mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-04-04 02:31:48 +00:00
19 lines
262 B
NASM
19 lines
262 B
NASM
%ifdef CONFIG
|
|
{
|
|
"RegData": {
|
|
"RAX": "0xddccbbaa"
|
|
},
|
|
"MemoryRegions": {
|
|
"0x100000": "4096"
|
|
},
|
|
"MemoryData": {
|
|
"0x100000": "AA BB CC DD"
|
|
}
|
|
}
|
|
%endif
|
|
|
|
; Simple test to prove that config loader's MemoryData is working
|
|
|
|
mov rax, [0x100000]
|
|
hlt
|