mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-09 23:30:37 +00:00
36 lines
265 B
NASM
36 lines
265 B
NASM
%ifdef CONFIG
|
|
{
|
|
"Match": "All",
|
|
"RegData": {
|
|
"RAX": "0x1"
|
|
}
|
|
}
|
|
%endif
|
|
|
|
mov esi, 50
|
|
|
|
.jump_start:
|
|
mov edi, 1
|
|
test edi, edi
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
|
|
jz .local
|
|
mov eax, 1
|
|
jmp .end
|
|
|
|
.local:
|
|
mov eax, 0
|
|
|
|
.end:
|
|
sub esi, 1
|
|
test esi, esi
|
|
jz .jump_start
|
|
hlt
|