mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-10 07:41:41 +00:00
ee410cf1be
Not full coverage, skips the string ops and doesn't confirm that flag setting is correct. Those are forthcoming
22 lines
186 B
NASM
22 lines
186 B
NASM
%ifdef CONFIG
|
|
{
|
|
"RegData": {
|
|
"RAX": "0x1"
|
|
},
|
|
"MemoryRegions": {
|
|
"0x100000000": "4096"
|
|
}
|
|
}
|
|
%endif
|
|
|
|
; Set CF to known value
|
|
clc
|
|
|
|
cmc
|
|
|
|
; Get CF
|
|
sbb rax, rax
|
|
and rax, 1
|
|
|
|
hlt
|