mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-09 07:10:39 +00:00
21 lines
231 B
NASM
21 lines
231 B
NASM
%ifdef CONFIG
|
|
{
|
|
"Match": "All",
|
|
"RegData": {
|
|
"RAX": "0x20"
|
|
}
|
|
}
|
|
%endif
|
|
|
|
mov rax, 0
|
|
cmp rax, 0
|
|
|
|
jz finish
|
|
|
|
; multiblock should gracefully handle these invalid ops
|
|
db 0xf, 0x3B ; invalid opcode here
|
|
|
|
finish:
|
|
mov rax, 32
|
|
|
|
hlt |