Skip to content

Commit

Permalink
simx86: JIT now supports 64bit mem_base.
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoldeman committed Jul 1, 2023
1 parent 407b9fd commit a59f1cd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/include/mapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@
#define MAPPING_NOOVERLAP 0x200000

#ifdef __x86_64__
/* FIXME: JIT should support 64bit mem_base */
#define _MAP_32BIT ((config.cpu_vm_dpmi == CPUVM_NATIVE || \
IS_EMU_JIT()) ? MAP_32BIT : 0)
#define _MAP_32BIT ((config.cpu_vm_dpmi == CPUVM_NATIVE) ? MAP_32BIT : 0)
#else
#define _MAP_32BIT 0
#endif
Expand Down

0 comments on commit a59f1cd

Please sign in to comment.