FEX/unittests/ASM/MemoryData.asm
Ryan Houdek b89dc56ae1 unittests: Update test so it can work on wine.
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.
2023-05-17 21:07:40 -07:00

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