aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornotaz2012-04-15 19:49:49 +0300
committernotaz2012-04-18 03:24:40 +0300
commita327ad27099341fb6eed61aa0419dff418429f96 (patch)
tree43461c310c044269b3c52f9d94e0e814b0fe4a37 /Makefile
parent3a321131b0f1d75685b7487517fc84738f4186d2 (diff)
downloadpcsx_rearmed-a327ad27099341fb6eed61aa0419dff418429f96.tar.gz
pcsx_rearmed-a327ad27099341fb6eed61aa0419dff418429f96.tar.bz2
pcsx_rearmed-a327ad27099341fb6eed61aa0419dff418429f96.zip
support emulated RAM mapped at offset
Thanks to CatalystG for some initial code and testing.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5f65f38..f08d9d7 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@ ARM926 ?= 0
ARM_CORTEXA8 ?= 1
PLATFORM ?= pandora
USE_OSS ?= 1
+RAM_FIXED ?= 1
#USE_ALSA = 1
#DRC_DBG = 1
#PCNT = 1
@@ -75,6 +76,9 @@ ifdef DRC_DBG
libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
CFLAGS += -DDRC_DBG
endif
+ifeq "$(RAM_FIXED)" "1"
+CFLAGS += -DRAM_FIXED
+endif
# spu
OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \