Changeset 102450 in vbox for trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
- Timestamp:
- Dec 4, 2023 1:25:29 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
r102448 r102450 2881 2881 'IEM_MC_FETCH_GREG_U32_SX_U64': (McBlock.parseMcGeneric, False, True, ), 2882 2882 'IEM_MC_FETCH_GREG_U32_ZX_U64': (McBlock.parseMcGeneric, False, True, ), 2883 'IEM_MC_FETCH_GREG_U64': (McBlock.parseMcGeneric, False, False,),2884 'IEM_MC_FETCH_GREG_U64_ZX_U64': (McBlock.parseMcGeneric, False, False,),2883 'IEM_MC_FETCH_GREG_U64': (McBlock.parseMcGeneric, False, True, ), 2884 'IEM_MC_FETCH_GREG_U64_ZX_U64': (McBlock.parseMcGeneric, False, True, ), 2885 2885 'IEM_MC_FETCH_GREG_U8': (McBlock.parseMcGeneric, False, True, ), 2886 2886 'IEM_MC_FETCH_GREG_U8_SX_U16': (McBlock.parseMcGeneric, False, True, ), … … 3134 3134 'IEM_MC_STORE_GREG_U32': (McBlock.parseMcGeneric, True, True, ), 3135 3135 'IEM_MC_STORE_GREG_U32_CONST': (McBlock.parseMcGeneric, True, True, ), 3136 'IEM_MC_STORE_GREG_U64': (McBlock.parseMcGeneric, True, False,),3137 'IEM_MC_STORE_GREG_U64_CONST': (McBlock.parseMcGeneric, True, False,),3136 'IEM_MC_STORE_GREG_U64': (McBlock.parseMcGeneric, True, True, ), 3137 'IEM_MC_STORE_GREG_U64_CONST': (McBlock.parseMcGeneric, True, True, ), 3138 3138 'IEM_MC_STORE_GREG_U8': (McBlock.parseMcGeneric, True, False, ), 3139 3139 'IEM_MC_STORE_GREG_U8_CONST': (McBlock.parseMcGeneric, True, False, ),
Note:
See TracChangeset
for help on using the changeset viewer.