├── .gitignore ├── README.md ├── SDL ├── Makefile ├── Makefile.350h ├── Makefile.bittboy ├── Makefile.gcw ├── Makefile.nspire ├── Makefile.rg99 ├── Makefile.rs2 ├── Makefile.rs97 ├── SDL_audio.c ├── SDL_event.c ├── SDL_event.h ├── SDL_main.c ├── SDL_menu.c ├── SDL_screen.c ├── SDL_screen.h ├── icon.png └── package ├── adpcm.c ├── adpcm.h ├── arcade_card.c ├── arcade_card.h ├── arm ├── cpu_arm_asm.S ├── cpu_arm_compatible.S ├── cpu_arm_fast.S ├── svn-commit.tmp ├── video_arm_asm.S ├── video_arm_asm_new.S └── video_arm_c.c ├── audio.c ├── audio.h ├── bin_cue.c ├── bin_cue.h ├── bin_to_iso_ogg.c ├── cd.c ├── cd.h ├── common.h ├── cpu.c ├── cpu.h ├── cpu_arm_asm_fast.S ├── cpu_recompiler.c ├── crc32.c ├── crc32.h ├── debug.c ├── debug.h ├── disasm.c ├── disasm.h ├── event.c ├── event.h ├── extract_ipl.c ├── font.h ├── font_8x8.c ├── font_8x8.chr ├── font_convert.c ├── gp2x ├── Makefile ├── asm_util.S ├── gp2x.c ├── gp2x_common.h ├── gp2x_event.c ├── gp2x_event.h ├── gp2x_main.c ├── gp2x_menu.c ├── gp2x_screen.c ├── gp2x_screen.h └── make_copy.sh ├── io.c ├── io.h ├── iphone ├── Makefile ├── iphone.c ├── iphone_audio.c ├── iphone_common.h ├── iphone_event.c ├── iphone_event.h ├── iphone_main.c ├── iphone_menu.c ├── iphone_screen.c ├── iphone_screen.h └── temper4iphone │ ├── Classes │ ├── AdMob │ │ ├── AdMobDelegateProtocol.h │ │ ├── AdMobView.h │ │ ├── AdViewController.h │ │ └── AdViewController.m │ ├── CoreSurface │ │ └── CoreSurface.h │ ├── GraphicsServices │ │ ├── GSFont.h │ │ ├── GSWindow.h │ │ └── GraphicsServices.h │ ├── OptionsController.h │ ├── OptionsController.m │ ├── RecentController.h │ ├── RecentController.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── SOApplication.h │ ├── SOApplication.m │ ├── SaveStatesController.h │ ├── SaveStatesController.m │ ├── ShoutOutAppDelegate.h │ ├── ShoutOutAppDelegate.m │ ├── TabBar.h │ └── TabBar.m │ ├── Default.png │ ├── Info.plist │ ├── MainWindow.xib │ ├── NowPlayingController.h │ ├── NowPlayingController.m │ ├── PlayViewController.xib │ ├── RootViewController.xib │ ├── controller_fs0.png │ ├── controller_hs0.png │ ├── genres.png │ ├── icon.png │ ├── main.m │ ├── nowplaying.png │ ├── options.bin │ ├── recent.bin │ └── soent.plist ├── irq.c ├── irq.h ├── linux ├── bram │ └── bram.sav ├── config │ ├── sapphire.cfg │ ├── temper.cf2 │ └── temper.cfg ├── linux_audio.c ├── pbo_test.c ├── save_states │ ├── Bonk's_Revenge_(U)_0.svs │ └── sapphire_0.svs └── syscards │ └── syscard3.bin ├── main.c ├── main.h ├── memory.c ├── memory.h ├── menu.c ├── menu.h ├── multiplayer.txt ├── netplay.c ├── netplay.h ├── op_list.h ├── package_src.sh ├── palette.h ├── pandora ├── Makefile ├── pandora_event.c ├── pandora_event.h ├── pandora_main.c ├── pandora_menu.c ├── pandora_screen.c ├── pandora_screen.h ├── pnd │ ├── PXML.xml │ ├── readme.txt │ ├── temper.sh │ └── temper_icon.png └── test.c ├── pick_sectors.c ├── platform_defines.h ├── psg.c ├── psg.h ├── psp ├── Makefile ├── asm_util.S ├── cpu_mips_asm.S ├── cpu_mips_compatible.S ├── cpu_mips_fast.S ├── make_copy.sh ├── psp_audio.c ├── psp_event.c ├── psp_event.h ├── psp_main.c ├── psp_menu.c ├── psp_screen.c └── psp_screen.h ├── r4300.h ├── screen.c ├── screen.h ├── sector_to_rads.c ├── sgx_priority.txt ├── timer.c ├── timer.h ├── tremor ├── CHANGELOG ├── COPYING ├── Makefile ├── Makefile.am ├── Makefile.in ├── README ├── asm_arm.h ├── autogen.sh ├── backends.h ├── bitwise.c ├── block.c ├── block.h ├── codebook.c ├── codebook.h ├── codec_internal.h ├── config_types.h ├── floor0.c ├── floor1.c ├── framing.c ├── info.c ├── ivorbiscodec.h ├── ivorbisfile.h ├── lsp_lookup.h ├── mapping0.c ├── mdct.c ├── mdct.h ├── mdct_lookup.h ├── misc.h ├── ogg.h ├── os.h ├── os_types.h ├── registry.c ├── registry.h ├── res012.c ├── sharedbook.c ├── synthesis.c ├── vorbisfile.c ├── window.c ├── window.h └── window_lookup.h ├── usa_fix.c ├── video.c ├── video.h ├── video_current.c ├── video_current.h ├── volume_generate.c ├── win32 ├── Makefile └── readme.txt └── wiz ├── Makefile ├── asm_util.S ├── make_copy.sh ├── mmuhack_wiz ├── .svn │ ├── entries │ ├── format │ ├── prop-base │ │ └── mmuhack.ko.svn-base │ └── text-base │ │ └── mmuhack.ko.svn-base ├── mmuhack.ko └── src │ ├── .svn │ ├── entries │ ├── format │ ├── prop-base │ │ ├── Makefile.svn-base │ │ └── mmuhack.c.svn-base │ └── text-base │ │ ├── Makefile.svn-base │ │ └── mmuhack.c.svn-base │ ├── Makefile │ └── mmuhack.c ├── wiz.c ├── wiz_common.h ├── wiz_event.c ├── wiz_event.h ├── wiz_main.c ├── wiz_menu.c ├── wiz_mmuhack.c ├── wiz_screen.c └── wiz_screen.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/README.md -------------------------------------------------------------------------------- /SDL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile -------------------------------------------------------------------------------- /SDL/Makefile.350h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile.350h -------------------------------------------------------------------------------- /SDL/Makefile.bittboy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile.bittboy -------------------------------------------------------------------------------- /SDL/Makefile.gcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile.gcw -------------------------------------------------------------------------------- /SDL/Makefile.nspire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile.nspire -------------------------------------------------------------------------------- /SDL/Makefile.rg99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile.rg99 -------------------------------------------------------------------------------- /SDL/Makefile.rs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile.rs2 -------------------------------------------------------------------------------- /SDL/Makefile.rs97: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/Makefile.rs97 -------------------------------------------------------------------------------- /SDL/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/SDL_audio.c -------------------------------------------------------------------------------- /SDL/SDL_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/SDL_event.c -------------------------------------------------------------------------------- /SDL/SDL_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/SDL_event.h -------------------------------------------------------------------------------- /SDL/SDL_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/SDL_main.c -------------------------------------------------------------------------------- /SDL/SDL_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/SDL_menu.c -------------------------------------------------------------------------------- /SDL/SDL_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/SDL_screen.c -------------------------------------------------------------------------------- /SDL/SDL_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/SDL_screen.h -------------------------------------------------------------------------------- /SDL/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/icon.png -------------------------------------------------------------------------------- /SDL/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/SDL/package -------------------------------------------------------------------------------- /adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/adpcm.c -------------------------------------------------------------------------------- /adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/adpcm.h -------------------------------------------------------------------------------- /arcade_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/arcade_card.c -------------------------------------------------------------------------------- /arcade_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/arcade_card.h -------------------------------------------------------------------------------- /arm/cpu_arm_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/arm/cpu_arm_asm.S -------------------------------------------------------------------------------- /arm/cpu_arm_compatible.S: -------------------------------------------------------------------------------- 1 | #define CPU_ARM_COMPATIBILITY_MODE 2 | #include "cpu_arm_asm.S" 3 | 4 | -------------------------------------------------------------------------------- /arm/cpu_arm_fast.S: -------------------------------------------------------------------------------- 1 | #define CPU_ARM_FAST_MODE 2 | #include "cpu_arm_asm.S" 3 | -------------------------------------------------------------------------------- /arm/svn-commit.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/arm/svn-commit.tmp -------------------------------------------------------------------------------- /arm/video_arm_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/arm/video_arm_asm.S -------------------------------------------------------------------------------- /arm/video_arm_asm_new.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/arm/video_arm_asm_new.S -------------------------------------------------------------------------------- /arm/video_arm_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/arm/video_arm_c.c -------------------------------------------------------------------------------- /audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/audio.c -------------------------------------------------------------------------------- /audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/audio.h -------------------------------------------------------------------------------- /bin_cue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/bin_cue.c -------------------------------------------------------------------------------- /bin_cue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/bin_cue.h -------------------------------------------------------------------------------- /bin_to_iso_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/bin_to_iso_ogg.c -------------------------------------------------------------------------------- /cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/cd.c -------------------------------------------------------------------------------- /cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/cd.h -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/common.h -------------------------------------------------------------------------------- /cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/cpu.c -------------------------------------------------------------------------------- /cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/cpu.h -------------------------------------------------------------------------------- /cpu_arm_asm_fast.S: -------------------------------------------------------------------------------- 1 | #define CPU_ARM_FAST 2 | #include "cpu_arm_asm.S" 3 | -------------------------------------------------------------------------------- /cpu_recompiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/cpu_recompiler.c -------------------------------------------------------------------------------- /crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/crc32.c -------------------------------------------------------------------------------- /crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/crc32.h -------------------------------------------------------------------------------- /debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/debug.c -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/debug.h -------------------------------------------------------------------------------- /disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/disasm.c -------------------------------------------------------------------------------- /disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/disasm.h -------------------------------------------------------------------------------- /event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/event.c -------------------------------------------------------------------------------- /event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/event.h -------------------------------------------------------------------------------- /extract_ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/extract_ipl.c -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/font.h -------------------------------------------------------------------------------- /font_8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/font_8x8.c -------------------------------------------------------------------------------- /font_8x8.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/font_8x8.chr -------------------------------------------------------------------------------- /font_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/font_convert.c -------------------------------------------------------------------------------- /gp2x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/Makefile -------------------------------------------------------------------------------- /gp2x/asm_util.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/asm_util.S -------------------------------------------------------------------------------- /gp2x/gp2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x.c -------------------------------------------------------------------------------- /gp2x/gp2x_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x_common.h -------------------------------------------------------------------------------- /gp2x/gp2x_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x_event.c -------------------------------------------------------------------------------- /gp2x/gp2x_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x_event.h -------------------------------------------------------------------------------- /gp2x/gp2x_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x_main.c -------------------------------------------------------------------------------- /gp2x/gp2x_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x_menu.c -------------------------------------------------------------------------------- /gp2x/gp2x_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x_screen.c -------------------------------------------------------------------------------- /gp2x/gp2x_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/gp2x_screen.h -------------------------------------------------------------------------------- /gp2x/make_copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/gp2x/make_copy.sh -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/io.c -------------------------------------------------------------------------------- /io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/io.h -------------------------------------------------------------------------------- /iphone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/Makefile -------------------------------------------------------------------------------- /iphone/iphone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone.c -------------------------------------------------------------------------------- /iphone/iphone_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_audio.c -------------------------------------------------------------------------------- /iphone/iphone_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_common.h -------------------------------------------------------------------------------- /iphone/iphone_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_event.c -------------------------------------------------------------------------------- /iphone/iphone_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_event.h -------------------------------------------------------------------------------- /iphone/iphone_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_main.c -------------------------------------------------------------------------------- /iphone/iphone_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_menu.c -------------------------------------------------------------------------------- /iphone/iphone_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_screen.c -------------------------------------------------------------------------------- /iphone/iphone_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/iphone_screen.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/AdMob/AdMobDelegateProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/AdMob/AdMobDelegateProtocol.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/AdMob/AdMobView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/AdMob/AdMobView.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/AdMob/AdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/AdMob/AdViewController.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/AdMob/AdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/AdMob/AdViewController.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/CoreSurface/CoreSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/CoreSurface/CoreSurface.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/GraphicsServices/GSFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/GraphicsServices/GSFont.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/GraphicsServices/GSWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/GraphicsServices/GSWindow.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/GraphicsServices/GraphicsServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/GraphicsServices/GraphicsServices.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/OptionsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/OptionsController.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/OptionsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/OptionsController.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/RecentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/RecentController.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/RecentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/RecentController.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/RootViewController.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/RootViewController.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/SOApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/SOApplication.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/SOApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/SOApplication.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/SaveStatesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/SaveStatesController.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/SaveStatesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/SaveStatesController.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/ShoutOutAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/ShoutOutAppDelegate.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/ShoutOutAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/ShoutOutAppDelegate.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/TabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/TabBar.h -------------------------------------------------------------------------------- /iphone/temper4iphone/Classes/TabBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Classes/TabBar.m -------------------------------------------------------------------------------- /iphone/temper4iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Default.png -------------------------------------------------------------------------------- /iphone/temper4iphone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/Info.plist -------------------------------------------------------------------------------- /iphone/temper4iphone/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/MainWindow.xib -------------------------------------------------------------------------------- /iphone/temper4iphone/NowPlayingController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/NowPlayingController.h -------------------------------------------------------------------------------- /iphone/temper4iphone/NowPlayingController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/NowPlayingController.m -------------------------------------------------------------------------------- /iphone/temper4iphone/PlayViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/PlayViewController.xib -------------------------------------------------------------------------------- /iphone/temper4iphone/RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/RootViewController.xib -------------------------------------------------------------------------------- /iphone/temper4iphone/controller_fs0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/controller_fs0.png -------------------------------------------------------------------------------- /iphone/temper4iphone/controller_hs0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/controller_hs0.png -------------------------------------------------------------------------------- /iphone/temper4iphone/genres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/genres.png -------------------------------------------------------------------------------- /iphone/temper4iphone/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/icon.png -------------------------------------------------------------------------------- /iphone/temper4iphone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/main.m -------------------------------------------------------------------------------- /iphone/temper4iphone/nowplaying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/nowplaying.png -------------------------------------------------------------------------------- /iphone/temper4iphone/options.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iphone/temper4iphone/recent.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iphone/temper4iphone/soent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/iphone/temper4iphone/soent.plist -------------------------------------------------------------------------------- /irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/irq.c -------------------------------------------------------------------------------- /irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/irq.h -------------------------------------------------------------------------------- /linux/bram/bram.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/bram/bram.sav -------------------------------------------------------------------------------- /linux/config/sapphire.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/config/sapphire.cfg -------------------------------------------------------------------------------- /linux/config/temper.cf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/config/temper.cf2 -------------------------------------------------------------------------------- /linux/config/temper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/config/temper.cfg -------------------------------------------------------------------------------- /linux/linux_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/linux_audio.c -------------------------------------------------------------------------------- /linux/pbo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/pbo_test.c -------------------------------------------------------------------------------- /linux/save_states/Bonk's_Revenge_(U)_0.svs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/save_states/Bonk's_Revenge_(U)_0.svs -------------------------------------------------------------------------------- /linux/save_states/sapphire_0.svs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/save_states/sapphire_0.svs -------------------------------------------------------------------------------- /linux/syscards/syscard3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/linux/syscards/syscard3.bin -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/main.h -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/memory.c -------------------------------------------------------------------------------- /memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/memory.h -------------------------------------------------------------------------------- /menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/menu.c -------------------------------------------------------------------------------- /menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/menu.h -------------------------------------------------------------------------------- /multiplayer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/multiplayer.txt -------------------------------------------------------------------------------- /netplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/netplay.c -------------------------------------------------------------------------------- /netplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/netplay.h -------------------------------------------------------------------------------- /op_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/op_list.h -------------------------------------------------------------------------------- /package_src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/package_src.sh -------------------------------------------------------------------------------- /palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/palette.h -------------------------------------------------------------------------------- /pandora/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/Makefile -------------------------------------------------------------------------------- /pandora/pandora_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pandora_event.c -------------------------------------------------------------------------------- /pandora/pandora_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pandora_event.h -------------------------------------------------------------------------------- /pandora/pandora_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pandora_main.c -------------------------------------------------------------------------------- /pandora/pandora_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pandora_menu.c -------------------------------------------------------------------------------- /pandora/pandora_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pandora_screen.c -------------------------------------------------------------------------------- /pandora/pandora_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pandora_screen.h -------------------------------------------------------------------------------- /pandora/pnd/PXML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pnd/PXML.xml -------------------------------------------------------------------------------- /pandora/pnd/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pnd/readme.txt -------------------------------------------------------------------------------- /pandora/pnd/temper.sh: -------------------------------------------------------------------------------- 1 | op_runfbapp ./temper 2 | -------------------------------------------------------------------------------- /pandora/pnd/temper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pandora/pnd/temper_icon.png -------------------------------------------------------------------------------- /pandora/test.c: -------------------------------------------------------------------------------- 1 | #include "bzlib.h" 2 | -------------------------------------------------------------------------------- /pick_sectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/pick_sectors.c -------------------------------------------------------------------------------- /platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/platform_defines.h -------------------------------------------------------------------------------- /psg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psg.c -------------------------------------------------------------------------------- /psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psg.h -------------------------------------------------------------------------------- /psp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/Makefile -------------------------------------------------------------------------------- /psp/asm_util.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/asm_util.S -------------------------------------------------------------------------------- /psp/cpu_mips_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/cpu_mips_asm.S -------------------------------------------------------------------------------- /psp/cpu_mips_compatible.S: -------------------------------------------------------------------------------- 1 | #define CPU_ARM_COMPATIBILITY_MODE 2 | #include "cpu_mips_asm.S" 3 | 4 | -------------------------------------------------------------------------------- /psp/cpu_mips_fast.S: -------------------------------------------------------------------------------- 1 | #define CPU_ARM_FAST_MODE 2 | #include "cpu_mips_asm.S" 3 | -------------------------------------------------------------------------------- /psp/make_copy.sh: -------------------------------------------------------------------------------- 1 | make -j2 && cp EBOOT.PBP f:/psp/game/temper 2 | -------------------------------------------------------------------------------- /psp/psp_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/psp_audio.c -------------------------------------------------------------------------------- /psp/psp_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/psp_event.c -------------------------------------------------------------------------------- /psp/psp_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/psp_event.h -------------------------------------------------------------------------------- /psp/psp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/psp_main.c -------------------------------------------------------------------------------- /psp/psp_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/psp_menu.c -------------------------------------------------------------------------------- /psp/psp_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/psp_screen.c -------------------------------------------------------------------------------- /psp/psp_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/psp/psp_screen.h -------------------------------------------------------------------------------- /r4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/r4300.h -------------------------------------------------------------------------------- /screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/screen.c -------------------------------------------------------------------------------- /screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/screen.h -------------------------------------------------------------------------------- /sector_to_rads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/sector_to_rads.c -------------------------------------------------------------------------------- /sgx_priority.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/sgx_priority.txt -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/timer.c -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/timer.h -------------------------------------------------------------------------------- /tremor/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/CHANGELOG -------------------------------------------------------------------------------- /tremor/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/COPYING -------------------------------------------------------------------------------- /tremor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/Makefile -------------------------------------------------------------------------------- /tremor/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/Makefile.am -------------------------------------------------------------------------------- /tremor/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/Makefile.in -------------------------------------------------------------------------------- /tremor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/README -------------------------------------------------------------------------------- /tremor/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/asm_arm.h -------------------------------------------------------------------------------- /tremor/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/autogen.sh -------------------------------------------------------------------------------- /tremor/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/backends.h -------------------------------------------------------------------------------- /tremor/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/bitwise.c -------------------------------------------------------------------------------- /tremor/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/block.c -------------------------------------------------------------------------------- /tremor/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/block.h -------------------------------------------------------------------------------- /tremor/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/codebook.c -------------------------------------------------------------------------------- /tremor/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/codebook.h -------------------------------------------------------------------------------- /tremor/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/codec_internal.h -------------------------------------------------------------------------------- /tremor/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/config_types.h -------------------------------------------------------------------------------- /tremor/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/floor0.c -------------------------------------------------------------------------------- /tremor/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/floor1.c -------------------------------------------------------------------------------- /tremor/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/framing.c -------------------------------------------------------------------------------- /tremor/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/info.c -------------------------------------------------------------------------------- /tremor/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/ivorbiscodec.h -------------------------------------------------------------------------------- /tremor/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/ivorbisfile.h -------------------------------------------------------------------------------- /tremor/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/lsp_lookup.h -------------------------------------------------------------------------------- /tremor/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/mapping0.c -------------------------------------------------------------------------------- /tremor/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/mdct.c -------------------------------------------------------------------------------- /tremor/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/mdct.h -------------------------------------------------------------------------------- /tremor/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/mdct_lookup.h -------------------------------------------------------------------------------- /tremor/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/misc.h -------------------------------------------------------------------------------- /tremor/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/ogg.h -------------------------------------------------------------------------------- /tremor/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/os.h -------------------------------------------------------------------------------- /tremor/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/os_types.h -------------------------------------------------------------------------------- /tremor/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/registry.c -------------------------------------------------------------------------------- /tremor/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/registry.h -------------------------------------------------------------------------------- /tremor/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/res012.c -------------------------------------------------------------------------------- /tremor/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/sharedbook.c -------------------------------------------------------------------------------- /tremor/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/synthesis.c -------------------------------------------------------------------------------- /tremor/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/vorbisfile.c -------------------------------------------------------------------------------- /tremor/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/window.c -------------------------------------------------------------------------------- /tremor/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/window.h -------------------------------------------------------------------------------- /tremor/window_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/tremor/window_lookup.h -------------------------------------------------------------------------------- /usa_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/usa_fix.c -------------------------------------------------------------------------------- /video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/video.c -------------------------------------------------------------------------------- /video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/video.h -------------------------------------------------------------------------------- /video_current.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/video_current.c -------------------------------------------------------------------------------- /video_current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/video_current.h -------------------------------------------------------------------------------- /volume_generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/volume_generate.c -------------------------------------------------------------------------------- /win32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/win32/Makefile -------------------------------------------------------------------------------- /win32/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/win32/readme.txt -------------------------------------------------------------------------------- /wiz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/Makefile -------------------------------------------------------------------------------- /wiz/asm_util.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/asm_util.S -------------------------------------------------------------------------------- /wiz/make_copy.sh: -------------------------------------------------------------------------------- 1 | make -j2 && cp temper.gpe f:/emulators/pcengine 2 | -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/.svn/entries -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/.svn/format: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/.svn/prop-base/mmuhack.ko.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/.svn/prop-base/mmuhack.ko.svn-base -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/.svn/text-base/mmuhack.ko.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/.svn/text-base/mmuhack.ko.svn-base -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/mmuhack.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/mmuhack.ko -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/src/.svn/entries -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/.svn/format: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/.svn/prop-base/Makefile.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/.svn/prop-base/mmuhack.c.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/.svn/text-base/Makefile.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/src/.svn/text-base/Makefile.svn-base -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/.svn/text-base/mmuhack.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/src/.svn/text-base/mmuhack.c.svn-base -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/src/Makefile -------------------------------------------------------------------------------- /wiz/mmuhack_wiz/src/mmuhack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/mmuhack_wiz/src/mmuhack.c -------------------------------------------------------------------------------- /wiz/wiz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz.c -------------------------------------------------------------------------------- /wiz/wiz_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_common.h -------------------------------------------------------------------------------- /wiz/wiz_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_event.c -------------------------------------------------------------------------------- /wiz/wiz_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_event.h -------------------------------------------------------------------------------- /wiz/wiz_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_main.c -------------------------------------------------------------------------------- /wiz/wiz_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_menu.c -------------------------------------------------------------------------------- /wiz/wiz_mmuhack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_mmuhack.c -------------------------------------------------------------------------------- /wiz/wiz_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_screen.c -------------------------------------------------------------------------------- /wiz/wiz_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/temper/HEAD/wiz/wiz_screen.h --------------------------------------------------------------------------------