mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-08 06:30:42 +00:00
b89dc56ae1
We don't necessarily care where this memory is, just that it can be allocated. Move it to a memory location that works on both Linux and Wine.
19 lines
268 B
NASM
19 lines
268 B
NASM
%ifdef CONFIG
|
|
{
|
|
"RegData": {
|
|
"RAX": "0xddccbbaa"
|
|
},
|
|
"MemoryRegions": {
|
|
"0x10000000": "4096"
|
|
},
|
|
"MemoryData": {
|
|
"0x10000000": "AA BB CC DD"
|
|
}
|
|
}
|
|
%endif
|
|
|
|
; Simple test to prove that config loader's MemoryData is working
|
|
|
|
mov rax, [0x10000000]
|
|
hlt
|