int 3
mov rax, 8000000000000000h ; ok
test rax, 8000000000000000h ; ok? not really...
; test rax, 800000000000000h ; not ok
; test rax, 80000000000000h
; test rax, 8000000000000h
; test rax, 800000000000h
; test rax, 80000000000h
; test rax, 8000000000h
; test rax, 800000000h
test rax, 80000000h
test rax, 8000000h
CC | int3 |
48:B8 0000000000000080 | mov rax,8000000000000000 |
48:A9 00000000 | test rax,0 |
48:A9 00000080 | test rax,FFFFFFFF8000000 |
48:A9 00000008 | test rax,8000000 |