aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNebuleon Fumika2012-12-19 01:30:30 -0500
committerNebuleon Fumika2012-12-19 01:30:30 -0500
commit65b56543ab4bab2307fe3b29a15f43caaa88dfa1 (patch)
tree519cf9b424822c8b34116fbff0adfbdb50c89bea /Makefile
parent6bab708c22e3c310d10a8f110161bf1691d01240 (diff)
downloadsnes9x2005-65b56543ab4bab2307fe3b29a15f43caaa88dfa1.tar.gz
snes9x2005-65b56543ab4bab2307fe3b29a15f43caaa88dfa1.tar.bz2
snes9x2005-65b56543ab4bab2307fe3b29a15f43caaa88dfa1.zip
Raise the CPU's clock speed to 396 MHz while loading ROMs.
Also raise the CPU's clock speed to 396 MHz by default, instead of 360 MHz, when emulating a ROM.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 590b482..e4c6e45 100644
--- a/Makefile
+++ b/Makefile
@@ -62,9 +62,11 @@ OBJECTS = $(C_OBJECTS) $(CPP_OBJECTS)
# - - - Compilation flags - - -
CFLAGS := -mips32 -Os -mno-abicalls -fno-pic -fno-builtin \
- -fno-exceptions -fno-function-sections -mlong-calls \
+ -fno-exceptions -ffunction-sections -mlong-calls \
-fomit-frame-pointer -msoft-float -G 4 \
- -fno-inline -fno-early-inlining
+ -fno-inline -fno-early-inlining \
+ -fgcse-sm -fgcse-las -fgcse-after-reload \
+ -fsched-spec-load -fsched-stalled-insns=0 -fweb
DEFS := -DSPC700_C -DEXECUTE_SUPERFX_PER_LINE -DSDD1_DECOMP \
-DVAR_CYCLES -DCPU_SHUTDOWN -DSPC700_SHUTDOWN \