mirror of https://github.com/icedland/iced.git
Remove MEMORY64 refs
This commit is contained in:
parent
c2bd2a45d4
commit
be4927b387
|
@ -717,7 +717,7 @@ def how_to_get_instruction_info() -> None:
|
|||
print(f" RFLAGS Modified: {rflags_bits_to_string(instr.rflags_modified)}")
|
||||
for i in range(instr.op_count):
|
||||
op_kind = instr.op_kind(i)
|
||||
if op_kind == OpKind.MEMORY or op_kind == OpKind.MEMORY64:
|
||||
if op_kind == OpKind.MEMORY:
|
||||
size = MemorySizeExt.size(instr.memory_size)
|
||||
if size != 0:
|
||||
print(f" Memory size: {size}")
|
||||
|
|
|
@ -1015,7 +1015,6 @@ def test_immediate_raise():
|
|||
OpKind.MEMORY_ESDI,
|
||||
OpKind.MEMORY_ESEDI,
|
||||
OpKind.MEMORY_ESRDI,
|
||||
OpKind.MEMORY64,
|
||||
OpKind.MEMORY,
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in New Issue