You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bddisasm/bdshemu_test/basic/test_64_basic02.asm

9 lines
176 B

bits 64
_xxx:
lea rbp, [rel _xxx]
mov eax, dword [rbp]
; This must fail with SHEMU_ABORT_GLA_OUTSIDE
mov eax, dword [rbp - 3]
retn