diff options
author | Nebuleon Fumika | 2012-12-19 01:30:30 -0500 |
---|---|---|
committer | Nebuleon Fumika | 2012-12-19 01:30:30 -0500 |
commit | 65b56543ab4bab2307fe3b29a15f43caaa88dfa1 (patch) | |
tree | 519cf9b424822c8b34116fbff0adfbdb50c89bea /Makefile | |
parent | 6bab708c22e3c310d10a8f110161bf1691d01240 (diff) | |
download | snes9x2005-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-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 \
|