Changeset 15744 in vbox for trunk/src/recompiler_new
- Timestamp:
- Dec 24, 2008 11:50:59 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/target-i386/op_helper.c
r15743 r15744 1028 1028 goto fail; 1029 1029 io_offset = lduw_kernel(env->tr.base + 0x66); 1030 if (io_offset < 0x68) 1030 /* Make sure the io bitmap offset is valid; anything less than sizeof(VBOXTSS) means there's none. */ 1031 if (io_offset < 0x68 + 0x20) 1031 1032 io_offset = 0x68 + 0x20; 1032 1033 /* the virtual interrupt redirection bitmap is located below the io bitmap */
Note:
See TracChangeset
for help on using the changeset viewer.