├── README.md ├── filesys └── fishell2 │ ├── dldibody.bin │ ├── extlink.dat │ ├── extlink │ ├── extlink_filestruct.h │ └── ipk.nds │ ├── fishell2.ini │ ├── hidepath.ini │ ├── internal │ ├── bgbmp.dat │ ├── chk16bit.bin │ ├── eng_full.ini │ ├── exif_cch.dat │ ├── fishell2.dat │ ├── launch.dat │ ├── m4acover.dat │ ├── playlist.all │ ├── prgjpeg.$$$ │ ├── resume.dat │ ├── resume.pls │ ├── resume.vid │ ├── sc88proe.bin │ ├── sndeff.dat │ ├── splash.ani │ └── swapfile.$$$ │ ├── language.set │ ├── language │ ├── chrglyph.000 │ ├── chrglyph.932 │ ├── messages.000 │ └── messages.932 │ ├── launch │ └── Check disk for NDS Ver ENG 0.4.nds │ ├── logbuf.txt │ ├── reload.dat │ ├── resetmse │ └── r4tf.nds │ ├── skins │ └── default.skn │ ├── tfontchn │ ├── font12.ctf │ ├── font12.glf │ ├── font12.glw │ ├── font14.ctf │ ├── font14.glf │ ├── font14.glw │ ├── font16.ctf │ ├── font16.glf │ └── font16.glw │ ├── tfonteng │ ├── font12.ctf │ ├── font12.glf │ ├── font12.glw │ ├── font14.ctf │ ├── font14.glf │ ├── font14.glw │ ├── font16.ctf │ ├── font16.glf │ └── font16.glw │ ├── tfontjpn │ ├── font12.ctf │ ├── font12.glf │ ├── font12.glw │ ├── font14.ctf │ ├── font14.glf │ ├── font14.glw │ ├── font16.ctf │ ├── font16.glf │ └── font16.glw │ ├── unicode │ ├── cp1252.tbl │ ├── cp437.tbl │ ├── cp850.tbl │ ├── cp932.tbl │ ├── cp933.tbl │ ├── cp936.tbl │ ├── cp949.tbl │ └── cp950.tbl │ └── version.dat ├── source ├── Makefile ├── arm7 │ ├── Makefile │ ├── build │ │ ├── .map │ │ ├── ProgramID.d │ │ ├── ProgramID.o │ │ ├── _console.d │ │ ├── _console.o │ │ ├── a7sleep.d │ │ ├── a7sleep.o │ │ ├── bit.d │ │ ├── bit.o │ │ ├── decoder.d │ │ ├── decoder.o │ │ ├── filesysARM7.d │ │ ├── filesysARM7.o │ │ ├── fixed.d │ │ ├── fixed.o │ │ ├── frame.d │ │ ├── frame.o │ │ ├── layer12.d │ │ ├── layer12.o │ │ ├── main.d │ │ ├── main.o │ │ ├── memtoolARM7.d │ │ ├── memtoolARM7.o │ │ ├── pcm1770.d │ │ ├── pcm1770.o │ │ ├── plug_mp2.d │ │ ├── plug_mp2.o │ │ ├── rawpcm.d │ │ ├── rawpcm.o │ │ ├── read_bios.d │ │ ├── read_bios.o │ │ ├── romeo2_hp.d │ │ ├── romeo2_hp.o │ │ ├── snd_click_long_c_bin.d │ │ ├── snd_click_long_c_bin.o │ │ ├── snd_click_short_c_bin.d │ │ ├── snd_click_short_c_bin.o │ │ ├── stream.d │ │ ├── stream.o │ │ ├── synth.d │ │ ├── synth.o │ │ ├── version.d │ │ └── version.o │ ├── fish_arm7.ld │ ├── fish_arm7.specs │ ├── fishell2.elf │ ├── memregion.scat │ └── source │ │ ├── ProgramID.cpp │ │ ├── _console.cpp │ │ ├── _console.h │ │ ├── a7sleep.cpp │ │ ├── a7sleep.h │ │ ├── filesys.h │ │ ├── filesysARM7.c │ │ ├── filesysARM7.h │ │ ├── fpga │ │ ├── pcm1770.cpp │ │ ├── pcm1770.h │ │ ├── rawpcm.cpp │ │ ├── rawpcm.h │ │ ├── romeo2.h │ │ ├── romeo2_hp.cpp │ │ └── romeo2_hp.h │ │ ├── internal │ │ ├── heap.s │ │ ├── init.s │ │ └── init_tcm.s │ │ ├── libmp2 │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── CREDITS │ │ ├── D.dat │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── aclocal.m4 │ │ ├── bit.c │ │ ├── bit.h │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── decoder.c │ │ ├── decoder.h │ │ ├── depcomp │ │ ├── fixed.c │ │ ├── fixed.h │ │ ├── frame.c │ │ ├── frame.h │ │ ├── global.h │ │ ├── huffman.c! │ │ ├── huffman.h │ │ ├── imdct_l_arm.s! │ │ ├── imdct_s.dat │ │ ├── install-sh │ │ ├── layer12.c │ │ ├── layer12.h │ │ ├── layer3.c! │ │ ├── layer3.h │ │ ├── libmad.list.in │ │ ├── ltmain.sh │ │ ├── mad.h │ │ ├── mad.h.sed │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── qc_table.dat │ │ ├── rq_table.dat │ │ ├── sf_table.dat │ │ ├── stream.c │ │ ├── stream.h │ │ ├── synth.c │ │ ├── synth.h │ │ ├── timer.c! │ │ ├── timer.h │ │ ├── version.c │ │ └── version.h │ │ ├── main.cpp │ │ ├── main_ARM7_SelfCheck.h │ │ ├── main_boot_gbarom.h │ │ ├── main_fpga.h │ │ ├── main_init.h │ │ ├── main_irq_timer.h │ │ ├── main_proc.h │ │ ├── main_strpcm.h │ │ ├── main_vsync.h │ │ ├── maindef.h │ │ ├── memtool.h │ │ ├── memtoolARM7.c │ │ ├── memtoolARM7.h │ │ ├── plug_mp2.c │ │ ├── plug_mp2.h │ │ ├── read_bios.s │ │ └── resources │ │ ├── bin2c.exe │ │ ├── snd_click.bat │ │ ├── snd_click_long_c.b2c │ │ ├── snd_click_long_c.bin │ │ ├── snd_click_long_c_bin.c │ │ ├── snd_click_long_c_bin.h │ │ ├── snd_click_short_c.b2c │ │ ├── snd_click_short_c.bin │ │ ├── snd_click_short_c_bin.c │ │ └── snd_click_short_c_bin.h ├── arm9 │ ├── Makefile │ ├── build │ │ ├── .map │ │ ├── Ay_Apu.d │ │ ├── Ay_Apu.o │ │ ├── Ay_Cpu.d │ │ ├── Ay_Cpu.o │ │ ├── Ay_Emu.d │ │ ├── Ay_Emu.o │ │ ├── BMPReader.d │ │ ├── BMPReader.o │ │ ├── Blip_Buffer.d │ │ ├── Blip_Buffer.o │ │ ├── BootROM.d │ │ ├── BootROM.o │ │ ├── Classic_Emu.d │ │ ├── Classic_Emu.o │ │ ├── Data_Reader.d │ │ ├── Data_Reader.o │ │ ├── Dual_Resampler.d │ │ ├── Dual_Resampler.o │ │ ├── Effects_Buffer.d │ │ ├── Effects_Buffer.o │ │ ├── ErrorDialog.d │ │ ├── ErrorDialog.o │ │ ├── Fir_Resampler.d │ │ ├── Fir_Resampler.o │ │ ├── Gb_Apu.d │ │ ├── Gb_Apu.o │ │ ├── Gb_Cpu.d │ │ ├── Gb_Cpu.o │ │ ├── Gb_Oscs.d │ │ ├── Gb_Oscs.o │ │ ├── Gbs_Emu.d │ │ ├── Gbs_Emu.o │ │ ├── Gme_File.d │ │ ├── Gme_File.o │ │ ├── Gym_Emu.d │ │ ├── Gym_Emu.o │ │ ├── Hes_Apu.d │ │ ├── Hes_Apu.o │ │ ├── Hes_Cpu.d │ │ ├── Hes_Cpu.o │ │ ├── Hes_Emu.d │ │ ├── Hes_Emu.o │ │ ├── Kss_Cpu.d │ │ ├── Kss_Cpu.o │ │ ├── Kss_Emu.d │ │ ├── Kss_Emu.o │ │ ├── Kss_Scc_Apu.d │ │ ├── Kss_Scc_Apu.o │ │ ├── M3u_Playlist.d │ │ ├── M3u_Playlist.o │ │ ├── Multi_Buffer.d │ │ ├── Multi_Buffer.o │ │ ├── Music_Emu.d │ │ ├── Music_Emu.o │ │ ├── NDSFiles.d │ │ ├── NDSFiles.o │ │ ├── NDSROMIcon.d │ │ ├── NDSROMIcon.o │ │ ├── Nes_Apu.d │ │ ├── Nes_Apu.o │ │ ├── Nes_Cpu.d │ │ ├── Nes_Cpu.o │ │ ├── Nes_Fme7_Apu.d │ │ ├── Nes_Fme7_Apu.o │ │ ├── Nes_Namco_Apu.d │ │ ├── Nes_Namco_Apu.o │ │ ├── Nes_Oscs.d │ │ ├── Nes_Oscs.o │ │ ├── Nes_Vrc6_Apu.d │ │ ├── Nes_Vrc6_Apu.o │ │ ├── Nsf_Emu.d │ │ ├── Nsf_Emu.o │ │ ├── Nsfe_Emu.d │ │ ├── Nsfe_Emu.o │ │ ├── OverlayManager.d │ │ ├── OverlayManager.o │ │ ├── ProgramID.d │ │ ├── ProgramID.o │ │ ├── Sap_Apu.d │ │ ├── Sap_Apu.o │ │ ├── Sap_Cpu.d │ │ ├── Sap_Cpu.o │ │ ├── Sap_Emu.d │ │ ├── Sap_Emu.o │ │ ├── Sms_Apu.d │ │ ├── Sms_Apu.o │ │ ├── Snes_Spc.d │ │ ├── Snes_Spc.o │ │ ├── Spc_Cpu.d │ │ ├── Spc_Cpu.o │ │ ├── Spc_Dsp.d │ │ ├── Spc_Dsp.o │ │ ├── Spc_Emu.d │ │ ├── Spc_Emu.o │ │ ├── ThumbDPG.d │ │ ├── ThumbDPG.o │ │ ├── ThumbIPK.d │ │ ├── ThumbIPK.o │ │ ├── Vgm_Emu.d │ │ ├── Vgm_Emu.o │ │ ├── Vgm_Emu_Impl.d │ │ ├── Vgm_Emu_Impl.o │ │ ├── VideoResume.d │ │ ├── VideoResume.o │ │ ├── Ym2413_Emu.d │ │ ├── Ym2413_Emu.o │ │ ├── Ym2612_Emu.d │ │ ├── Ym2612_Emu.o │ │ ├── _console.d │ │ ├── _console.o │ │ ├── _consoleWriteLog.d │ │ ├── _consoleWriteLog.o │ │ ├── _console_font_fixed6x6_packed_bin.d │ │ ├── _console_font_fixed6x6_packed_bin.o │ │ ├── _dpgfs.d │ │ ├── _dpgfs.o │ │ ├── _libogg_dsp.d │ │ ├── _libogg_dsp.o │ │ ├── _libogg_mdct.d │ │ ├── _libogg_mdct.o │ │ ├── _libogg_misc.d │ │ ├── _libogg_misc.o │ │ ├── adler32.d │ │ ├── adler32.o │ │ ├── alloc.d │ │ ├── alloc.o │ │ ├── bit.d │ │ ├── bit.o │ │ ├── bitwise.d │ │ ├── bitwise.o │ │ ├── bootwarn_b8zlib.d │ │ ├── bootwarn_b8zlib.o │ │ ├── cctf.d │ │ ├── cctf.o │ │ ├── cctf_dfs.d │ │ ├── cctf_dfs.o │ │ ├── cfont.d │ │ ├── cfont.o │ │ ├── cglb15.d │ │ ├── cglb15.o │ │ ├── cglcanvas.d │ │ ├── cglcanvas.o │ │ ├── cglfont.d │ │ ├── cglfont.o │ │ ├── cglscreenmain.d │ │ ├── cglscreenmain.o │ │ ├── cglscreenoverlay.d │ │ ├── cglscreenoverlay.o │ │ ├── cglscreensub.d │ │ ├── cglscreensub.o │ │ ├── cglstream.d │ │ ├── cglstream.o │ │ ├── cgltgf.d │ │ ├── cgltgf.o │ │ ├── cipk_simple.d │ │ ├── cipk_simple.o │ │ ├── clibdpg.d │ │ ├── clibdpg.o │ │ ├── clibmpg.d │ │ ├── clibmpg.o │ │ ├── codebook.d │ │ ├── codebook.o │ │ ├── component.d │ │ ├── component.o │ │ ├── crc32.d │ │ ├── crc32.o │ │ ├── cstream.d │ │ ├── cstream.o │ │ ├── cstream_fs.d │ │ ├── cstream_fs.o │ │ ├── datetime.d │ │ ├── datetime.o │ │ ├── decode.d │ │ ├── decode.o │ │ ├── decoder.d │ │ ├── decoder.o │ │ ├── deflate.d │ │ ├── deflate.o │ │ ├── dgif_lib.d │ │ ├── dgif_lib.o │ │ ├── disc_io.d │ │ ├── disc_io.o │ │ ├── dll.d │ │ ├── dll.o │ │ ├── dllsound.d │ │ ├── dllsound.o │ │ ├── euc2unicode.d │ │ ├── euc2unicode.o │ │ ├── extlink.d │ │ ├── extlink.o │ │ ├── extmem.d │ │ ├── extmem.o │ │ ├── extmem_DSBM.d │ │ ├── extmem_DSBM.o │ │ ├── extmem_EZ3in1.d │ │ ├── extmem_EZ3in1.o │ │ ├── extmem_M3ExtPack.d │ │ ├── extmem_M3ExtPack.o │ │ ├── extmem_RawMem.d │ │ ├── extmem_RawMem.o │ │ ├── extmem_SuperCard.d │ │ ├── extmem_SuperCard.o │ │ ├── fastlzss16decpalasm.d │ │ ├── fastlzss16decpalasm.o │ │ ├── fastlzss16decpalasm_body.d │ │ ├── fastlzss16decpalasm_body.o │ │ ├── fat2.d │ │ ├── fat2.o │ │ ├── fixed.d │ │ ├── fixed.o │ │ ├── floor0.d │ │ ├── floor0.o │ │ ├── floor1.d │ │ ├── floor1.o │ │ ├── floor_lookup.d │ │ ├── floor_lookup.o │ │ ├── fpga_helper.d │ │ ├── fpga_helper.o │ │ ├── frame.d │ │ ├── frame.o │ │ ├── framing.d │ │ ├── framing.o │ │ ├── gba_nds_fat.d │ │ ├── gba_nds_fat.o │ │ ├── gif_err.d │ │ ├── gif_err.o │ │ ├── gifalloc.d │ │ ├── gifalloc.o │ │ ├── glglobal.d │ │ ├── glglobal.o │ │ ├── glmemtool.d │ │ ├── glmemtool.o │ │ ├── gme.d │ │ ├── gme.o │ │ ├── guidxcrcerror_b8zlib.d │ │ ├── guidxcrcerror_b8zlib.o │ │ ├── header.d │ │ ├── header.o │ │ ├── hiddenpaths.d │ │ ├── hiddenpaths.o │ │ ├── huffman.d │ │ ├── huffman.o │ │ ├── idct.d │ │ ├── idct.o │ │ ├── infback.d │ │ ├── infback.o │ │ ├── inffast.d │ │ ├── inffast.o │ │ ├── inflate.d │ │ ├── inflate.o │ │ ├── info.d │ │ ├── info.o │ │ ├── inftrees.d │ │ ├── inftrees.o │ │ ├── inifile.d │ │ ├── inifile.o │ │ ├── jcomapi.d │ │ ├── jcomapi.o │ │ ├── jdapimin.d │ │ ├── jdapimin.o │ │ ├── jdapistd.d │ │ ├── jdapistd.o │ │ ├── jdatasrc.d │ │ ├── jdatasrc.o │ │ ├── jdcoefct.d │ │ ├── jdcoefct.o │ │ ├── jdcolor.d │ │ ├── jdcolor.o │ │ ├── jddctmgr.d │ │ ├── jddctmgr.o │ │ ├── jdhuff.d │ │ ├── jdhuff.o │ │ ├── jdinput.d │ │ ├── jdinput.o │ │ ├── jdmainct.d │ │ ├── jdmainct.o │ │ ├── jdmarker.d │ │ ├── jdmarker.o │ │ ├── jdmaster.d │ │ ├── jdmaster.o │ │ ├── jdmerge.d │ │ ├── jdmerge.o │ │ ├── jdphuff.d │ │ ├── jdphuff.o │ │ ├── jdpostct.d │ │ ├── jdpostct.o │ │ ├── jdsample.d │ │ ├── jdsample.o │ │ ├── jerror.d │ │ ├── jerror.o │ │ ├── jidctfst.d │ │ ├── jidctfst.o │ │ ├── jidctred.d │ │ ├── jidctred.o │ │ ├── jmemansi.d │ │ ├── jmemansi.o │ │ ├── jmemmgr.d │ │ ├── jmemmgr.o │ │ ├── jpeg_idct_ifast_clip_asm.d │ │ ├── jpeg_idct_ifast_clip_asm.o │ │ ├── jquant1.d │ │ ├── jquant1.o │ │ ├── jutils.d │ │ ├── jutils.o │ │ ├── lang.d │ │ ├── lang.o │ │ ├── launchstate.d │ │ ├── launchstate.o │ │ ├── layer12.d │ │ ├── layer12.o │ │ ├── layer3.d │ │ ├── layer3.o │ │ ├── main.d │ │ ├── main.o │ │ ├── mapping0.d │ │ ├── mapping0.o │ │ ├── md5c.d │ │ ├── md5c.o │ │ ├── memtool.d │ │ ├── memtool.o │ │ ├── motion_comp.d │ │ ├── motion_comp.o │ │ ├── motion_comp_arm.d │ │ ├── motion_comp_arm.o │ │ ├── motion_comp_arm_s.d │ │ ├── motion_comp_arm_s.o │ │ ├── msgwin.d │ │ ├── msgwin.o │ │ ├── mtrk.d │ │ ├── mtrk.o │ │ ├── particle.d │ │ ├── particle.o │ │ ├── pch.d │ │ ├── pch.o │ │ ├── playlist.d │ │ ├── playlist.o │ │ ├── plug_bmp.d │ │ ├── plug_bmp.o │ │ ├── plug_dpg.d │ │ ├── plug_dpg.o │ │ ├── plug_gif.d │ │ ├── plug_gif.o │ │ ├── plug_gme.d │ │ ├── plug_gme.o │ │ ├── plug_jpeg.d │ │ ├── plug_jpeg.o │ │ ├── plug_lyric.d │ │ ├── plug_lyric.o │ │ ├── plug_midi.d │ │ ├── plug_midi.o │ │ ├── plug_mp2.d │ │ ├── plug_mp2.o │ │ ├── plug_mp3.d │ │ ├── plug_mp3.o │ │ ├── plug_ndsrom.d │ │ ├── plug_ndsrom.o │ │ ├── plug_ogg.d │ │ ├── plug_ogg.o │ │ ├── plug_png.d │ │ ├── plug_png.o │ │ ├── plug_psd.d │ │ ├── plug_psd.o │ │ ├── plug_srttitle.d │ │ ├── plug_srttitle.o │ │ ├── plug_wav.d │ │ ├── plug_wav.o │ │ ├── png.d │ │ ├── png.o │ │ ├── pngerror.d │ │ ├── pngerror.o │ │ ├── pngget.d │ │ ├── pngget.o │ │ ├── pngmem.d │ │ ├── pngmem.o │ │ ├── pngread.d │ │ ├── pngread.o │ │ ├── pngrio.d │ │ ├── pngrio.o │ │ ├── pngrtran.d │ │ ├── pngrtran.o │ │ ├── pngrutil.d │ │ ├── pngrutil.o │ │ ├── pngset.d │ │ ├── pngset.o │ │ ├── pngtrans.d │ │ ├── pngtrans.o │ │ ├── proc_AudioCustom.d │ │ ├── proc_AudioCustom.o │ │ ├── proc_BinView.d │ │ ├── proc_BinView.o │ │ ├── proc_BootROM.d │ │ ├── proc_BootROM.o │ │ ├── proc_Custom.d │ │ ├── proc_Custom.o │ │ ├── proc_DPGCustom.d │ │ ├── proc_DPGCustom.o │ │ ├── proc_DPGPlay.d │ │ ├── proc_DPGPlay.o │ │ ├── proc_FileList.d │ │ ├── proc_FileList.o │ │ ├── proc_ImageCustom.d │ │ ├── proc_ImageCustom.o │ │ ├── proc_ImageView.d │ │ ├── proc_ImageView.o │ │ ├── proc_Launch.d │ │ ├── proc_Launch.o │ │ ├── proc_MemoEdit.d │ │ ├── proc_MemoEdit.o │ │ ├── proc_MemoList.d │ │ ├── proc_MemoList.o │ │ ├── proc_TextCustom.d │ │ ├── proc_TextCustom.o │ │ ├── proc_TextMenu.d │ │ ├── proc_TextMenu.o │ │ ├── proc_TextView.d │ │ ├── proc_TextView.o │ │ ├── proc_chkdsk.d │ │ ├── proc_chkdsk.o │ │ ├── proc_setup.d │ │ ├── proc_setup.o │ │ ├── proc_sysmenu.d │ │ ├── proc_sysmenu.o │ │ ├── procstate.d │ │ ├── procstate.o │ │ ├── rcplib.d │ │ ├── rcplib.o │ │ ├── rect.d │ │ ├── rect.o │ │ ├── res012.d │ │ ├── res012.o │ │ ├── resume.d │ │ ├── resume.o │ │ ├── romeo2_ncd.d │ │ ├── romeo2_ncd.o │ │ ├── shell.d │ │ ├── shell.o │ │ ├── shell_SystemAfter.d │ │ ├── shell_SystemAfter.o │ │ ├── skin.d │ │ ├── skin.o │ │ ├── slice.d │ │ ├── slice.o │ │ ├── smidlib.d │ │ ├── smidlib.o │ │ ├── smidlib_sm.d │ │ ├── smidlib_sm.o │ │ ├── snd_click_long_c_bin.d │ │ ├── snd_click_long_c_bin.o │ │ ├── snd_click_short_c_bin.d │ │ ├── snd_click_short_c_bin.o │ │ ├── sndeff.d │ │ ├── sndeff.o │ │ ├── sndeff_dfs.d │ │ ├── sndeff_dfs.o │ │ ├── sndfont.d │ │ ├── sndfont.o │ │ ├── splash.d │ │ ├── splash.o │ │ ├── stream.d │ │ ├── stream.o │ │ ├── strpcm.d │ │ ├── strpcm.o │ │ ├── strtool.d │ │ ├── strtool.o │ │ ├── synth.d │ │ ├── synth.o │ │ ├── timer.d │ │ ├── timer.o │ │ ├── trees.d │ │ ├── trees.o │ │ ├── unicode.d │ │ ├── unicode.o │ │ ├── version.d │ │ ├── version.o │ │ ├── versionerror_b8zlib.d │ │ ├── versionerror_b8zlib.o │ │ ├── vorbisfile.d │ │ ├── vorbisfile.o │ │ ├── vramcache.d │ │ ├── vramcache.o │ │ ├── zlibhelp.d │ │ ├── zlibhelp.o │ │ ├── zutil.d │ │ └── zutil.o │ ├── fish_arm9.ld │ ├── fish_arm9.specs │ ├── fishell2.elf │ ├── memregion.scat │ └── source │ │ ├── BootROM.cpp │ │ ├── BootROM.h │ │ ├── NDSROMIcon.cpp │ │ ├── NDSROMIcon.h │ │ ├── PlaySE.h │ │ ├── ProgramID.cpp │ │ ├── _console.cpp │ │ ├── _console.h │ │ ├── _consoleWriteLog.cpp │ │ ├── _consoleWriteLog.h │ │ ├── _console_LogFile.h │ │ ├── _const.h │ │ ├── arm9tcm.h │ │ ├── component.cpp │ │ ├── component.h │ │ ├── dll.cpp │ │ ├── dll.h │ │ ├── dll_StdLib.h │ │ ├── dllsound.cpp │ │ ├── dllsound.h │ │ ├── dllsound_internal_gme.h │ │ ├── dllsound_internal_midi.h │ │ ├── dllsound_internal_mp3.h │ │ ├── dllsound_internal_ogg.h │ │ ├── dllsound_internal_wav.h │ │ ├── euc2unicode.cpp │ │ ├── euc2unicode.h │ │ ├── extlink.cpp │ │ ├── extlink.h │ │ ├── extlink_filestruct.h │ │ ├── fpga_helper.cpp │ │ ├── fpga_helper.h │ │ ├── gba_nds_fat │ │ ├── FAT2_fopen_CreateForWrite_on_CurrentFolder.h │ │ ├── FAT2_fopen_CurrentForRead.h │ │ ├── disc_io.cpp │ │ ├── disc_io.h │ │ ├── fat2.cpp │ │ ├── fat2.h │ │ ├── gba_nds_fat.cpp │ │ ├── gba_nds_fat.h │ │ ├── gba_nds_fat.txt │ │ ├── gba_nds_fat_DirEntFromPath_LFNTopDirEntry.h │ │ ├── gba_nds_fat_GetAllDirEntry.h │ │ ├── gba_nds_fat_deletefile.h │ │ ├── gba_nds_fat_deletefile_def.h │ │ ├── gba_nds_fat_fread.h │ │ ├── gba_nds_fat_fread_fast.h │ │ ├── gba_nds_fat_fskip.h │ │ ├── gba_nds_fat_getdirentry1.h │ │ ├── gba_nds_fat_getdirentry2.h │ │ ├── gba_nds_fat_getdirentry3.h │ │ ├── gba_nds_fat_getdirentry4.h │ │ ├── gba_nds_fat_initfiles1.h │ │ ├── gba_nds_fat_lfnunicodedef.h │ │ ├── gba_nds_fat_move.h │ │ ├── gba_nds_fat_move_def.h │ │ └── mediatype.h │ │ ├── glib │ │ ├── cglb15.cpp │ │ ├── cglb15.h │ │ ├── cglcanvas.cpp │ │ ├── cglcanvas.h │ │ ├── cglfont.cpp │ │ ├── cglfont.h │ │ ├── cglscreen.h │ │ ├── cglscreenmain.cpp │ │ ├── cglscreenoverlay.cpp │ │ ├── cglscreensub.cpp │ │ ├── cglstream.cpp │ │ ├── cglstream.h │ │ ├── cgltgf.cpp │ │ ├── cgltgf.h │ │ ├── glglobal.cpp │ │ ├── glglobal.h │ │ ├── glib.h │ │ ├── glmemtool.cpp │ │ ├── glmemtool.h │ │ └── tglunicode.h │ │ ├── internal │ │ ├── heap.s │ │ ├── init.s │ │ └── init_tcm.s │ │ ├── internaldrivers.h │ │ ├── libs │ │ ├── BMPReader.cpp │ │ ├── BMPReader.h │ │ ├── ErrorDialog.cpp │ │ ├── ErrorDialog.h │ │ ├── OverlayManager.cpp │ │ ├── OverlayManager.h │ │ ├── OverlayManager_DFS.h │ │ ├── VideoResume.cpp │ │ ├── VideoResume.h │ │ ├── cfont.cpp │ │ ├── cfont.h │ │ ├── cstream.cpp │ │ ├── cstream.h │ │ ├── cstream_dfs.h │ │ ├── cstream_fs.cpp │ │ ├── cstream_fs.h │ │ ├── datetime.cpp │ │ ├── datetime.h │ │ ├── extmem.cpp │ │ ├── extmem.h │ │ ├── extmem_DSBM.cpp │ │ ├── extmem_EZ3in1.cpp │ │ ├── extmem_M3ExtPack.cpp │ │ ├── extmem_RawMem.cpp │ │ ├── extmem_SuperCard.cpp │ │ ├── fastlzss16decpalasm.cpp │ │ ├── fastlzss16decpalasm.h │ │ ├── fastlzss16decpalasm_body.s │ │ ├── inifile.cpp │ │ ├── inifile.h │ │ ├── lang.cpp │ │ ├── lang.h │ │ ├── lang_TextPool.h │ │ ├── launchstate.cpp │ │ ├── launchstate.h │ │ ├── md5.h │ │ ├── md5_global.h │ │ ├── md5c.cpp │ │ ├── memtool.cpp │ │ ├── memtool.h │ │ ├── memtool_MM.h │ │ ├── procstate.cpp │ │ ├── procstate.h │ │ ├── procstate_dfs.h │ │ ├── rect.cpp │ │ ├── rect.h │ │ ├── resume.cpp │ │ ├── resume.h │ │ ├── shell.cpp │ │ ├── shell.h │ │ ├── shell_ConvertFull.h │ │ ├── shell_CreateNewFile.h │ │ ├── shell_FAT_Read.h │ │ ├── shell_FAT_fopen.h │ │ ├── shell_Helpers.h │ │ ├── shell_SwapFile.h │ │ ├── shell_SystemAfter.cpp │ │ ├── skin.cpp │ │ ├── skin.h │ │ ├── skin_CustomBG.h │ │ ├── skin_SkinFile.h │ │ ├── skin_colortbl.h │ │ ├── sndeff.cpp │ │ ├── sndeff.h │ │ ├── sndeff_WaveFile.h │ │ ├── sndeff_dfs.cpp │ │ ├── sndeff_dfs.h │ │ ├── splash.cpp │ │ ├── splash.h │ │ ├── strpcm.cpp │ │ ├── strpcm.h │ │ ├── strpcm_ARM7_SelfCheck.h │ │ ├── strtool.cpp │ │ ├── strtool.h │ │ ├── unicode.cpp │ │ ├── unicode.h │ │ ├── zlibhelp.cpp │ │ └── zlibhelp.h │ │ ├── main.cpp │ │ ├── main_Trigger.h │ │ ├── main_keyrepeat.h │ │ ├── main_savepreview.h │ │ ├── maindef.h │ │ ├── msgwin.cpp │ │ ├── msgwin.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── playlist.cpp │ │ ├── playlist.h │ │ ├── playlist_ConvertM3U.h │ │ ├── playlist_ConvertM3U_CP2Unicode.h │ │ ├── playlist_MakeFolder.h │ │ ├── playlist_TextPool.h │ │ ├── plugin.h │ │ ├── plugin │ │ ├── Image │ │ │ ├── libgif │ │ │ │ ├── AUTHORS │ │ │ │ ├── BUGS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── DEVELOPERS │ │ │ │ ├── INSTALL │ │ │ │ ├── NEWS │ │ │ │ ├── ONEWS │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── UNCOMPRESSED_GIF │ │ │ │ ├── dgif_lib.cpp │ │ │ │ ├── gif_err.c │ │ │ │ ├── gif_lib.h │ │ │ │ ├── gif_lib_private.h │ │ │ │ ├── gifalloc.c │ │ │ │ └── test-unx │ │ │ ├── libjpeg │ │ │ │ ├── jcomapi.cpp │ │ │ │ ├── jconfig.h │ │ │ │ ├── jdapimin.cpp │ │ │ │ ├── jdapistd.cpp │ │ │ │ ├── jdatasrc.cpp │ │ │ │ ├── jdcoefct.cpp │ │ │ │ ├── jdcolor.cpp │ │ │ │ ├── jdct.h │ │ │ │ ├── jddctmgr.cpp │ │ │ │ ├── jdhuff.cpp │ │ │ │ ├── jdhuff.h │ │ │ │ ├── jdinput.cpp │ │ │ │ ├── jdmainct.cpp │ │ │ │ ├── jdmarker.cpp │ │ │ │ ├── jdmaster.cpp │ │ │ │ ├── jdmerge.cpp │ │ │ │ ├── jdphuff.cpp │ │ │ │ ├── jdpostct.cpp │ │ │ │ ├── jdsample.cpp │ │ │ │ ├── jerror.cpp │ │ │ │ ├── jerror.h │ │ │ │ ├── jidctfst.cpp │ │ │ │ ├── jidctred.cpp │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmemansi.cpp │ │ │ │ ├── jmemmgr.cpp │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpeg_idct_ifast_clip_asm.h │ │ │ │ ├── jpeg_idct_ifast_clip_asm.s │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpeglib.h │ │ │ │ ├── jquant1.cpp │ │ │ │ ├── jutils.cpp │ │ │ │ └── jversion.h │ │ │ ├── libpng │ │ │ │ ├── ANNOUNCE │ │ │ │ ├── CHANGES │ │ │ │ ├── INSTALL │ │ │ │ ├── KNOWNBUG │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── Y2KINFO │ │ │ │ ├── configure │ │ │ │ ├── libpng.3 │ │ │ │ ├── libpng.txt │ │ │ │ ├── libpngpf.3 │ │ │ │ ├── png.5 │ │ │ │ ├── png.cpp │ │ │ │ ├── png.h │ │ │ │ ├── pngbar.jpg │ │ │ │ ├── pngbar.png │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngerror.cpp │ │ │ │ ├── pngget.cpp │ │ │ │ ├── pngmem.cpp │ │ │ │ ├── pngnow.png │ │ │ │ ├── pngread.cpp │ │ │ │ ├── pngrio.cpp │ │ │ │ ├── pngrtran.cpp │ │ │ │ ├── pngrutil.cpp │ │ │ │ ├── pngset.cpp │ │ │ │ ├── pngtrans.cpp │ │ │ │ └── pngusr.h │ │ │ ├── plug_bmp.cpp │ │ │ ├── plug_bmp.h │ │ │ ├── plug_gif.cpp │ │ │ ├── plug_gif.h │ │ │ ├── plug_jpeg.cpp │ │ │ ├── plug_jpeg.h │ │ │ ├── plug_jpeg_prgjpeg_dfs.h │ │ │ ├── plug_png.cpp │ │ │ ├── plug_png.h │ │ │ ├── plug_psd.cpp │ │ │ └── plug_psd.h │ │ ├── Sound │ │ │ ├── libgme │ │ │ │ ├── Blip_Buffer.cpp │ │ │ │ ├── Blip_Buffer.h │ │ │ │ ├── Classic_Emu.cpp │ │ │ │ ├── Classic_Emu.h │ │ │ │ ├── Data_Reader.cpp │ │ │ │ ├── Data_Reader.h │ │ │ │ ├── Effects_Buffer.cpp │ │ │ │ ├── Effects_Buffer.h │ │ │ │ ├── Gme_File.cpp │ │ │ │ ├── Gme_File.h │ │ │ │ ├── M3u_Playlist.h │ │ │ │ ├── Multi_Buffer.cpp │ │ │ │ ├── Multi_Buffer.h │ │ │ │ ├── Music_Emu.cpp │ │ │ │ ├── Music_Emu.h │ │ │ │ ├── Nsf_Emu.cpp │ │ │ │ ├── Nsf_Emu.h │ │ │ │ ├── blargg_common.h │ │ │ │ ├── blargg_config.h │ │ │ │ ├── blargg_endian.h │ │ │ │ ├── blargg_source.h │ │ │ │ ├── config.h │ │ │ │ ├── disabled │ │ │ │ │ ├── Dual_Resampler.cpp │ │ │ │ │ ├── Dual_Resampler.h │ │ │ │ │ ├── Fir_Resampler.cpp │ │ │ │ │ ├── Fir_Resampler.h │ │ │ │ │ ├── Gym_Emu.cpp │ │ │ │ │ ├── Gym_Emu.h │ │ │ │ │ ├── M3u_Playlist.cpp │ │ │ │ │ ├── Nsfe_Emu.cpp │ │ │ │ │ ├── Nsfe_Emu.h │ │ │ │ │ ├── Snes_Spc.cpp │ │ │ │ │ ├── Snes_Spc.h │ │ │ │ │ ├── Spc_Cpu.cpp │ │ │ │ │ ├── Spc_Cpu.h │ │ │ │ │ ├── Spc_Dsp.cpp │ │ │ │ │ ├── Spc_Dsp.h │ │ │ │ │ ├── Spc_Emu.cpp │ │ │ │ │ ├── Spc_Emu.h │ │ │ │ │ ├── Vgm_Emu.cpp │ │ │ │ │ ├── Vgm_Emu.h │ │ │ │ │ ├── Vgm_Emu_Impl.cpp │ │ │ │ │ ├── Vgm_Emu_Impl.h │ │ │ │ │ ├── Ym2413_Emu.cpp │ │ │ │ │ ├── Ym2413_Emu.h │ │ │ │ │ ├── Ym2612_Emu.cpp │ │ │ │ │ └── Ym2612_Emu.h │ │ │ │ ├── documents │ │ │ │ │ ├── changes.txt │ │ │ │ │ ├── design.txt │ │ │ │ │ ├── gme.txt │ │ │ │ │ ├── license.txt │ │ │ │ │ └── readme.txt │ │ │ │ ├── format_Ay │ │ │ │ │ ├── Ay_Apu.cpp │ │ │ │ │ ├── Ay_Apu.h │ │ │ │ │ ├── Ay_Cpu.cpp │ │ │ │ │ ├── Ay_Cpu.h │ │ │ │ │ ├── Ay_Emu.cpp │ │ │ │ │ └── Ay_Emu.h │ │ │ │ ├── format_Gb │ │ │ │ │ ├── Gb_Apu.cpp │ │ │ │ │ ├── Gb_Apu.h │ │ │ │ │ ├── Gb_Cpu.cpp │ │ │ │ │ ├── Gb_Cpu.h │ │ │ │ │ ├── Gb_Oscs.cpp │ │ │ │ │ ├── Gb_Oscs.h │ │ │ │ │ ├── Gbs_Emu.cpp │ │ │ │ │ ├── Gbs_Emu.h │ │ │ │ │ └── gb_cpu_io.h │ │ │ │ ├── format_Hes │ │ │ │ │ ├── Hes_Apu.cpp │ │ │ │ │ ├── Hes_Apu.h │ │ │ │ │ ├── Hes_Cpu.cpp │ │ │ │ │ ├── Hes_Cpu.h │ │ │ │ │ ├── Hes_Emu.cpp │ │ │ │ │ ├── Hes_Emu.h │ │ │ │ │ └── hes_cpu_io.h │ │ │ │ ├── format_Kss │ │ │ │ │ ├── Kss_Cpu.cpp │ │ │ │ │ ├── Kss_Cpu.h │ │ │ │ │ ├── Kss_Emu.cpp │ │ │ │ │ ├── Kss_Emu.h │ │ │ │ │ ├── Kss_Scc_Apu.cpp │ │ │ │ │ └── Kss_Scc_Apu.h │ │ │ │ ├── format_Nes │ │ │ │ │ ├── Nes_Apu.cpp │ │ │ │ │ ├── Nes_Apu.h │ │ │ │ │ ├── Nes_Cpu.cpp │ │ │ │ │ ├── Nes_Cpu.h │ │ │ │ │ ├── Nes_Fme7_Apu.cpp │ │ │ │ │ ├── Nes_Fme7_Apu.h │ │ │ │ │ ├── Nes_Namco_Apu.cpp │ │ │ │ │ ├── Nes_Namco_Apu.h │ │ │ │ │ ├── Nes_Oscs.cpp │ │ │ │ │ ├── Nes_Oscs.h │ │ │ │ │ ├── Nes_Vrc6_Apu.cpp │ │ │ │ │ ├── Nes_Vrc6_Apu.h │ │ │ │ │ └── nes_cpu_io.h │ │ │ │ ├── format_Sap │ │ │ │ │ ├── Sap_Apu.cpp │ │ │ │ │ ├── Sap_Apu.h │ │ │ │ │ ├── Sap_Cpu.cpp │ │ │ │ │ ├── Sap_Cpu.h │ │ │ │ │ ├── Sap_Emu.cpp │ │ │ │ │ ├── Sap_Emu.h │ │ │ │ │ └── sap_cpu_io.h │ │ │ │ ├── format_Sms │ │ │ │ │ ├── Sms_Apu.cpp │ │ │ │ │ ├── Sms_Apu.h │ │ │ │ │ └── Sms_Oscs.h │ │ │ │ ├── gme.cpp │ │ │ │ └── gme.h │ │ │ ├── libmidi │ │ │ │ ├── mtrk.cpp │ │ │ │ ├── mtrk.h │ │ │ │ ├── pch.cpp │ │ │ │ ├── pch.h │ │ │ │ ├── pch_tbl.h │ │ │ │ ├── rcplib.cpp │ │ │ │ ├── rcplib.h │ │ │ │ ├── rcplib_rcp.h │ │ │ │ ├── smidlib.cpp │ │ │ │ ├── smidlib.h │ │ │ │ ├── smidlib_sm.cpp │ │ │ │ ├── smidlib_sm.h │ │ │ │ ├── sndfont.cpp │ │ │ │ ├── sndfont.h │ │ │ │ ├── sndfont_dfs.h │ │ │ │ └── ttac_filter.h │ │ │ ├── libmp3 │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── CREDITS │ │ │ │ ├── D.dat │ │ │ │ ├── INSTALL │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── VERSION │ │ │ │ ├── bit.c │ │ │ │ ├── bit.h │ │ │ │ ├── decoder.c │ │ │ │ ├── decoder.h │ │ │ │ ├── depcomp │ │ │ │ ├── fixed.c │ │ │ │ ├── fixed.h │ │ │ │ ├── frame.c │ │ │ │ ├── frame.h │ │ │ │ ├── global.h │ │ │ │ ├── huffman.c │ │ │ │ ├── huffman.h │ │ │ │ ├── imdct_s.dat │ │ │ │ ├── install-sh │ │ │ │ ├── layer12.c │ │ │ │ ├── layer12.h │ │ │ │ ├── layer3.c │ │ │ │ ├── layer3.h │ │ │ │ ├── mad.h │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── qc_table.dat │ │ │ │ ├── rq_table.dat │ │ │ │ ├── sf_table.dat │ │ │ │ ├── stream.c │ │ │ │ ├── stream.h │ │ │ │ ├── synth.c │ │ │ │ ├── synth.h │ │ │ │ ├── timer.c │ │ │ │ ├── timer.h │ │ │ │ ├── version.c │ │ │ │ └── version.h │ │ │ ├── libogg │ │ │ │ ├── CHANGELOG │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── _libogg_dsp.c │ │ │ │ ├── _libogg_mdct.c │ │ │ │ ├── _libogg_misc.c │ │ │ │ ├── _lowmem-branch_Tremor │ │ │ │ ├── asm_arm.h │ │ │ │ ├── autogen.sh │ │ │ │ ├── bitwise.c │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── config_types.h │ │ │ │ ├── configure.in │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── floor_lookup.c │ │ │ │ ├── floor_lookup.h │ │ │ │ ├── framing.c │ │ │ │ ├── info.c │ │ │ │ ├── ivorbiscodec.h │ │ │ │ ├── ivorbisfile.h │ │ │ │ ├── ivorbisfile_example.c! │ │ │ │ ├── lsp_lookup.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── mdct.h │ │ │ │ ├── mdct_lookup.h │ │ │ │ ├── misc.h │ │ │ │ ├── ogg.h │ │ │ │ ├── os.h │ │ │ │ ├── os_types.h │ │ │ │ ├── res012.c │ │ │ │ ├── vorbisfile.c │ │ │ │ └── window_lookup.h │ │ │ ├── plug_gme.cpp │ │ │ ├── plug_gme.h │ │ │ ├── plug_gme_ay.h │ │ │ ├── plug_gme_gbs.h │ │ │ ├── plug_gme_hes.h │ │ │ ├── plug_gme_kss.h │ │ │ ├── plug_gme_nsf.h │ │ │ ├── plug_gme_sap.h │ │ │ ├── plug_lyric.cpp │ │ │ ├── plug_lyric.h │ │ │ ├── plug_midi.cpp │ │ │ ├── plug_midi.h │ │ │ ├── plug_mp3.cpp │ │ │ ├── plug_mp3.h │ │ │ ├── plug_mp3_id3tag.h │ │ │ ├── plug_ogg.cpp │ │ │ ├── plug_ogg.h │ │ │ ├── plug_wav.cpp │ │ │ └── plug_wav.h │ │ ├── Video │ │ │ ├── _dpgfs.cpp │ │ │ ├── _dpgfs.h │ │ │ ├── clibdpg.cpp │ │ │ ├── clibdpg.h │ │ │ ├── clibmpg.cpp │ │ │ ├── clibmpg.h │ │ │ ├── clibmpg_diskcache.h │ │ │ ├── clibmpg_framecache.h │ │ │ ├── libmpeg2 │ │ │ │ ├── alloc.c │ │ │ │ ├── attributes.h │ │ │ │ ├── config.h │ │ │ │ ├── decode.c │ │ │ │ ├── header.c │ │ │ │ ├── idct.c │ │ │ │ ├── inttypes.h │ │ │ │ ├── motion_comp.c │ │ │ │ ├── motion_comp_arm.c │ │ │ │ ├── motion_comp_arm_s.s │ │ │ │ ├── mpeg2.h │ │ │ │ ├── mpeg2_internal.h │ │ │ │ ├── mpeg2convert.h │ │ │ │ ├── slice.c │ │ │ │ └── vlc.h │ │ │ ├── plug_dpg.cpp │ │ │ ├── plug_dpg.h │ │ │ ├── plug_mp2.cpp │ │ │ ├── plug_mp2.h │ │ │ ├── plug_mp2_synth_d.h │ │ │ ├── plug_srttitle.cpp │ │ │ └── plug_srttitle.h │ │ ├── plug_ndsrom.cpp │ │ ├── plug_ndsrom.h │ │ ├── plug_ndsrom_dfs.h │ │ ├── plug_ndsrom_dldipatch.h │ │ └── plug_ndsrom_resetmem.h │ │ ├── plugin_def.h │ │ ├── procbody │ │ ├── Proc_BinView │ │ │ ├── Proc_BinView_font_fixed6x6.h │ │ │ └── proc_BinView.cpp │ │ ├── proc_AudioPlay │ │ │ ├── proc_AP_SpeAna.h │ │ │ ├── proc_AP_SpeAna_algo_fft.h │ │ │ ├── proc_AudioCustom.cpp │ │ │ ├── proc_AudioPlay_BGM.h │ │ │ └── proc_AudioPlay_Trigger_CallBack.h │ │ ├── proc_BootROM │ │ │ └── proc_BootROM.cpp │ │ ├── proc_Custom.cpp │ │ ├── proc_DPGPlay │ │ │ ├── proc_DPGCustom.cpp │ │ │ ├── proc_DPGPlay.cpp │ │ │ ├── proc_DPGPlay_BGM.h │ │ │ ├── proc_DPGPlay_Popup.h │ │ │ └── proc_DPGPlay_Trigger_CallBack.h │ │ ├── proc_FileList │ │ │ ├── NDSFiles.cpp │ │ │ ├── NDSFiles.h │ │ │ ├── NDSFiles_GetFileInfo.h │ │ │ ├── NDSFiles_TextPool.h │ │ │ ├── ThumbDPG.cpp │ │ │ ├── ThumbDPG.h │ │ │ ├── ThumbIPK.cpp │ │ │ ├── ThumbIPK.h │ │ │ ├── cipk_simple.cpp │ │ │ ├── cipk_simple.h │ │ │ ├── hiddenpaths.cpp │ │ │ ├── hiddenpaths.h │ │ │ ├── proc_FileList.cpp │ │ │ ├── proc_FileList_CB_KeyPress.h │ │ │ ├── proc_FileList_CB_Mouse.h │ │ │ ├── proc_FileList_CB_VsyncUpdate.h │ │ │ ├── proc_FileList_Clock.h │ │ │ ├── proc_FileList_DeleteFileDialog.h │ │ │ ├── proc_FileList_FileList.h │ │ │ ├── proc_FileList_FileList_Draw.h │ │ │ ├── proc_FileList_FileList_DrawHelp.h │ │ │ ├── proc_FileList_FileList_DrawID3Tag.h │ │ │ ├── proc_FileList_FileList_DrawLyric.h │ │ │ ├── proc_FileList_LongTapState.h │ │ │ ├── proc_FileList_MoveFolder.h │ │ │ ├── proc_FileList_Popup.h │ │ │ ├── proc_FileList_SSCustom.h │ │ │ ├── proc_FileList_ScrollBar.h │ │ │ ├── proc_FileList_SelEnc_ui.h │ │ │ └── proc_FileList_Trigger_CallBack.h │ │ ├── proc_ImageView │ │ │ ├── proc_ImageCustom.cpp │ │ │ ├── proc_ImageView.cpp │ │ │ ├── proc_ImageView_Popup.h │ │ │ ├── proc_ImageView_Trigger_CallBack.h │ │ │ ├── proc_ImageView_createbg.h │ │ │ ├── proc_ImageView_dfs.h │ │ │ ├── proc_ImageView_mcu.h │ │ │ ├── proc_ImageView_preview.h │ │ │ ├── proc_ImageView_redrawimage.h │ │ │ └── proc_ImageView_relationalto.h │ │ ├── proc_Launch.cpp │ │ ├── proc_Launch_LongTapState.h │ │ ├── proc_Memo │ │ │ ├── proc_MemoEdit.cpp │ │ │ └── proc_MemoEdit_BMPWriter.h │ │ ├── proc_MemoList │ │ │ └── proc_MemoList.cpp │ │ ├── proc_TextView │ │ │ ├── cctf.cpp │ │ │ ├── cctf.h │ │ │ ├── cctf_dfs.cpp │ │ │ ├── cctf_dfs.h │ │ │ ├── proc_TextCustom.cpp │ │ │ ├── proc_TextMenu.cpp │ │ │ ├── proc_TextView.cpp │ │ │ ├── proc_TextView_Clock.h │ │ │ ├── proc_TextView_Draw.h │ │ │ ├── proc_TextView_DrawID3Tag.h │ │ │ ├── proc_TextView_DrawLyric.h │ │ │ ├── proc_TextView_Popup.h │ │ │ ├── proc_TextView_ScrollBar.h │ │ │ ├── proc_TextView_Trigger_CallBack.h │ │ │ ├── proc_TextView_bookmark_fileio.h │ │ │ ├── proc_TextView_bookmark_ui.h │ │ │ ├── proc_TextView_dfs.h │ │ │ ├── proc_TextView_extfont.h │ │ │ ├── proc_TextView_libconv.h │ │ │ ├── proc_TextView_libconv_ansi.h │ │ │ ├── proc_TextView_libconv_convertbody.h │ │ │ ├── proc_TextView_libconv_euc.h │ │ │ ├── proc_TextView_libconv_utf16be.h │ │ │ ├── proc_TextView_libconv_utf16le.h │ │ │ └── proc_TextView_libconv_utf8.h │ │ ├── proc_chkdsk.cpp │ │ ├── proc_chkdsk_body.h │ │ ├── proc_setup.cpp │ │ └── proc_sysmenu.cpp │ │ ├── resource │ │ ├── _console_font_fixed6x6_packed_bin.c │ │ ├── _console_font_fixed6x6_packed_bin.h │ │ ├── bootwarn_b8zlib.c │ │ ├── bootwarn_b8zlib.h │ │ ├── guidxcrcerror_b8zlib.c │ │ ├── guidxcrcerror_b8zlib.h │ │ ├── romeo2_ncd.c │ │ ├── romeo2_ncd.h │ │ ├── snd_click_long_c_bin.c │ │ ├── snd_click_long_c_bin.h │ │ ├── snd_click_short_c_bin.c │ │ ├── snd_click_short_c_bin.h │ │ ├── versionerror_b8zlib.c │ │ └── versionerror_b8zlib.h │ │ ├── setarm9_reg_waitcr.h │ │ ├── vramcache.s │ │ └── zlib │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── adler32.c │ │ ├── algorithm.txt │ │ ├── configure │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── crc32_pass.cdummy │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── trees.c │ │ ├── trees.h │ │ ├── zconf.h │ │ ├── zconf.in.h │ │ ├── zconf_new_lowmemory.h │ │ ├── zlib.3 │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── fishell2.nds ├── icon.bmp ├── ipc6.h ├── license.txt ├── log.txt └── ovrtool.c └── tools ├── ovrcextract ├── ovrcextract.c ├── ovrcextract.exe └── ovrctool.exe /README.md: -------------------------------------------------------------------------------- 1 | # fishshell2 2 | Open Source soon to be DSi Mode Compatible media player based on Moonshell 2 3 | 4 | --- 5 | Multimedia Player For DSi 6 | Based on Moonshell 2 beta 5 7 | Compiles on FreeBSD with Devkit ARMr41(I think my /opt/ directory with libs is a mess). 8 | and lib nds1.5.x 9 | 10 | 11 | Will eventually support DPG1-4, MP3/4, txt and standard moonshell file formats.(todo) 12 | -------------------------------------------------------------------------------- /filesys/fishell2/dldibody.bin: -------------------------------------------------------------------------------- 1 | 该文件用来备份 FishShell2 启动时 DLDI 补丁。 2 | FishShell2 启动自制软件时使用该文件。 3 | -------------------------------------------------------------------------------- /filesys/fishell2/extlink.dat: -------------------------------------------------------------------------------- 1 | 此文件是记录启动自制软件自动调用相关的信息。 2 | 3 | 这个文件必须存在 /fishshl2/extlink.dat。 4 | 请不要更改文件名称或位置。 -------------------------------------------------------------------------------- /filesys/fishell2/extlink/ipk.nds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/extlink/ipk.nds -------------------------------------------------------------------------------- /filesys/fishell2/internal/bgbmp.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/chk16bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/internal/chk16bit.bin -------------------------------------------------------------------------------- /filesys/fishell2/internal/exif_cch.dat: -------------------------------------------------------------------------------- 1 | 2 | for Exif2.1 and DCF image files. 3 | 4 | The thumbnail image of the Jpeg file taken a picture of with the digital camera in accordance with "Exif2.1 or DCF" standard is cached. 5 | When this file is deleted, the thumbnail image is not cached. 6 | 7 | Please use "ThumbnailIconMaker.exe" to add the thumbnail image to the picture file that doesn't contain "Exif2.1/DCF thumbnail image". 8 | 9 | ------------ 10 | 11 | このファイルは、Exif2.1またはDCF規格に準拠したデジタルカメラ(カメラ付き携帯電話も含む)で撮影されたJpegファイルのサムネイル画像(ファイルアイコン)を最大510枚分一時保管するファイルです。 12 | このファイルを削除すると、キャッシュを行わなくなります。表示が遅くなるだけでサムネイル画像自体は表示されます。 13 | また、MoonShell2で表示した画像ファイル(Jpegファイル以外を含む)のサムネイル画像を作成する機能を追加します。 14 | "Exif2.1/DCFサムネイル画像"を含まない画像ファイルにサムネイル画像を付加するときは、"ThumbnailIconMaker.exe"を使用してください。 15 | 16 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/launch.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/m4acover.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/playlist.all: -------------------------------------------------------------------------------- 1 | / 2 | 3 | L+R+A 指定全盘播放时起始搜索目录。 4 | 默认指定 "/"(根目录)。 5 | 必须以 / 开头。请不超过256个字节。 文件格式保存为UTF-8。请不要使用驱动器字母。区分大小写。 -------------------------------------------------------------------------------- /filesys/fishell2/internal/prgjpeg.$$$: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/resume.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/resume.pls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/resume.vid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/internal/sc88proe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/internal/sc88proe.bin -------------------------------------------------------------------------------- /filesys/fishell2/internal/sndeff.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/internal/sndeff.dat -------------------------------------------------------------------------------- /filesys/fishell2/internal/splash.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/internal/splash.ani -------------------------------------------------------------------------------- /filesys/fishell2/internal/swapfile.$$$: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesys/fishell2/language.set: -------------------------------------------------------------------------------- 1 | 000 2 | FIRST -------------------------------------------------------------------------------- /filesys/fishell2/language/chrglyph.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/language/chrglyph.000 -------------------------------------------------------------------------------- /filesys/fishell2/language/chrglyph.932: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/language/chrglyph.932 -------------------------------------------------------------------------------- /filesys/fishell2/launch/Check disk for NDS Ver ENG 0.4.nds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/launch/Check disk for NDS Ver ENG 0.4.nds -------------------------------------------------------------------------------- /filesys/fishell2/reload.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/reload.dat -------------------------------------------------------------------------------- /filesys/fishell2/resetmse/r4tf.nds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/resetmse/r4tf.nds -------------------------------------------------------------------------------- /filesys/fishell2/skins/default.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/skins/default.skn -------------------------------------------------------------------------------- /filesys/fishell2/tfontchn/font12.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontchn/font12.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfontchn/font12.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontchn/font12.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfontchn/font14.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontchn/font14.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfontchn/font14.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontchn/font14.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfontchn/font16.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontchn/font16.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfontchn/font16.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontchn/font16.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfonteng/font12.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfonteng/font12.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfonteng/font12.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfonteng/font12.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfonteng/font14.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfonteng/font14.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfonteng/font14.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfonteng/font14.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfonteng/font16.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfonteng/font16.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfonteng/font16.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfonteng/font16.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfontjpn/font12.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontjpn/font12.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfontjpn/font12.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontjpn/font12.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfontjpn/font14.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontjpn/font14.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfontjpn/font14.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontjpn/font14.glf -------------------------------------------------------------------------------- /filesys/fishell2/tfontjpn/font16.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontjpn/font16.ctf -------------------------------------------------------------------------------- /filesys/fishell2/tfontjpn/font16.glf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/tfontjpn/font16.glf -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp1252.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp1252.tbl -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp437.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp437.tbl -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp850.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp850.tbl -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp932.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp932.tbl -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp933.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp933.tbl -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp936.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp936.tbl -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp949.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp949.tbl -------------------------------------------------------------------------------- /filesys/fishell2/unicode/cp950.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/filesys/fishell2/unicode/cp950.tbl -------------------------------------------------------------------------------- /filesys/fishell2/version.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /source/arm7/build/ProgramID.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/ProgramID.o -------------------------------------------------------------------------------- /source/arm7/build/_console.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/_console.o -------------------------------------------------------------------------------- /source/arm7/build/a7sleep.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/a7sleep.o -------------------------------------------------------------------------------- /source/arm7/build/bit.d: -------------------------------------------------------------------------------- 1 | bit.o: /fishshell2gcc-code/source/arm7/source/libmp2/bit.c \ 2 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h \ 3 | /opt/devkitpro/libnds/include/nds/ndstypes.h \ 4 | /fishshell2gcc-code/source/arm7/source/libmp2/bit.h 5 | 6 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h: 7 | 8 | /opt/devkitpro/libnds/include/nds/ndstypes.h: 9 | 10 | /fishshell2gcc-code/source/arm7/source/libmp2/bit.h: 11 | -------------------------------------------------------------------------------- /source/arm7/build/bit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/bit.o -------------------------------------------------------------------------------- /source/arm7/build/decoder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/decoder.o -------------------------------------------------------------------------------- /source/arm7/build/filesysARM7.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/filesysARM7.o -------------------------------------------------------------------------------- /source/arm7/build/fixed.d: -------------------------------------------------------------------------------- 1 | fixed.o: /fishshell2gcc-code/source/arm7/source/libmp2/fixed.c \ 2 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h \ 3 | /opt/devkitpro/libnds/include/nds/ndstypes.h \ 4 | /fishshell2gcc-code/source/arm7/source/libmp2/fixed.h 5 | 6 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h: 7 | 8 | /opt/devkitpro/libnds/include/nds/ndstypes.h: 9 | 10 | /fishshell2gcc-code/source/arm7/source/libmp2/fixed.h: 11 | -------------------------------------------------------------------------------- /source/arm7/build/fixed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/fixed.o -------------------------------------------------------------------------------- /source/arm7/build/frame.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/frame.o -------------------------------------------------------------------------------- /source/arm7/build/layer12.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/layer12.o -------------------------------------------------------------------------------- /source/arm7/build/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/main.o -------------------------------------------------------------------------------- /source/arm7/build/memtoolARM7.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/memtoolARM7.o -------------------------------------------------------------------------------- /source/arm7/build/pcm1770.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/pcm1770.o -------------------------------------------------------------------------------- /source/arm7/build/plug_mp2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/plug_mp2.o -------------------------------------------------------------------------------- /source/arm7/build/rawpcm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/rawpcm.o -------------------------------------------------------------------------------- /source/arm7/build/read_bios.d: -------------------------------------------------------------------------------- 1 | read_bios.o: /fishshell2gcc-code/source/arm7/source/read_bios.s 2 | -------------------------------------------------------------------------------- /source/arm7/build/read_bios.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/read_bios.o -------------------------------------------------------------------------------- /source/arm7/build/romeo2_hp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/romeo2_hp.o -------------------------------------------------------------------------------- /source/arm7/build/snd_click_long_c_bin.d: -------------------------------------------------------------------------------- 1 | snd_click_long_c_bin.o: \ 2 | /fishshell2gcc-code/source/arm7/source/resources/snd_click_long_c_bin.c 3 | -------------------------------------------------------------------------------- /source/arm7/build/snd_click_long_c_bin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/snd_click_long_c_bin.o -------------------------------------------------------------------------------- /source/arm7/build/snd_click_short_c_bin.d: -------------------------------------------------------------------------------- 1 | snd_click_short_c_bin.o: \ 2 | /fishshell2gcc-code/source/arm7/source/resources/snd_click_short_c_bin.c 3 | -------------------------------------------------------------------------------- /source/arm7/build/snd_click_short_c_bin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/snd_click_short_c_bin.o -------------------------------------------------------------------------------- /source/arm7/build/stream.d: -------------------------------------------------------------------------------- 1 | stream.o: /fishshell2gcc-code/source/arm7/source/libmp2/stream.c \ 2 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h \ 3 | /opt/devkitpro/libnds/include/nds/ndstypes.h \ 4 | /fishshell2gcc-code/source/arm7/source/libmp2/bit.h \ 5 | /fishshell2gcc-code/source/arm7/source/libmp2/stream.h 6 | 7 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h: 8 | 9 | /opt/devkitpro/libnds/include/nds/ndstypes.h: 10 | 11 | /fishshell2gcc-code/source/arm7/source/libmp2/bit.h: 12 | 13 | /fishshell2gcc-code/source/arm7/source/libmp2/stream.h: 14 | -------------------------------------------------------------------------------- /source/arm7/build/stream.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/stream.o -------------------------------------------------------------------------------- /source/arm7/build/synth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/synth.o -------------------------------------------------------------------------------- /source/arm7/build/version.d: -------------------------------------------------------------------------------- 1 | version.o: /fishshell2gcc-code/source/arm7/source/libmp2/version.c \ 2 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h \ 3 | /opt/devkitpro/libnds/include/nds/ndstypes.h \ 4 | /fishshell2gcc-code/source/arm7/source/libmp2/version.h 5 | 6 | /fishshell2gcc-code/source/arm7/source/libmp2/global.h: 7 | 8 | /opt/devkitpro/libnds/include/nds/ndstypes.h: 9 | 10 | /fishshell2gcc-code/source/arm7/source/libmp2/version.h: 11 | -------------------------------------------------------------------------------- /source/arm7/build/version.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/build/version.o -------------------------------------------------------------------------------- /source/arm7/fish_arm7.specs: -------------------------------------------------------------------------------- 1 | %rename link old_link 2 | 3 | *link: 4 | %(old_link) -T fish_arm7.ld%s 5 | 6 | *startfile: 7 | ds_arm7_crt0%O%s crti%O%s crtbegin%O%s 8 | 9 | -------------------------------------------------------------------------------- /source/arm7/fishell2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/fishell2.elf -------------------------------------------------------------------------------- /source/arm7/memregion.scat: -------------------------------------------------------------------------------- 1 | LR_NDSROM 0x037f8000 0x18000-0x800 2 | { 3 | ER_BootLoader +0 4 | { 5 | init_tcm.o (INIT7TDMI, +FIRST) ; Core initialisation inc TCM enable 6 | __main.o ; C Library entry point, must be in a root region 7 | } 8 | 9 | ;ER_ProgramID +0 10 | ;{ 11 | ; ProgramID.o (+RO) 12 | ;} 13 | 14 | ER_Absolute +0 15 | { 16 | * (+RO) 17 | } 18 | 19 | ER_RW +0 20 | { 21 | * (+RW) 22 | * (+ZI) 23 | } 24 | 25 | HEAP +0 UNINIT 26 | { 27 | heap.o (+ZI) ; heap follows directly from image data 28 | } 29 | 30 | ER_RebootLoader 0x0380fb00 0x400 31 | { 32 | * (.RebootLoader) 33 | } 34 | 35 | ;EOVR_Header 0x00000000 OVERLAY NOCOMPRESS 64 36 | ;{ 37 | ; ProgramID.o (OverlayHeader) 38 | ;} 39 | } 40 | -------------------------------------------------------------------------------- /source/arm7/source/ProgramID.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | #include "maindef.h" 5 | 6 | const char ROMTITLE[]="FishShell"; 7 | const char ROMVERSION[]="for iSmart Premium"; 8 | const char ROMDATE[]=""__DATE__" "__TIME__" GMT+08:00"; 9 | const char ROMDATESHORT[]=""__DATE__" "__TIME__""; 10 | const char ROMDATEVERYSHORT[]=""__DATE__""; 11 | const char ROMENV[]="ARM RVCT3.1 [Build 1021]"; 12 | const char ROMWEB[]="http://www.fishome.org"; 13 | 14 | const char OverlayHeader_ID[]="OVRC FishShell OverlayCode7 "__DATE__" "__TIME__" GMT+08:00"; 15 | __attribute__ ((section ("OverlayHeader"))) const char OverlayHeader_ID_CanNotAccess[]="OVRC FishShell OverlayCode7 "__DATE__" "__TIME__" GMT+08:00" "\0\0\0\0"; 16 | -------------------------------------------------------------------------------- /source/arm7/source/_console.h: -------------------------------------------------------------------------------- 1 | #ifndef _console_h 2 | #define _console_h 3 | 4 | //#define EnableConsoleToARM9 5 | 6 | #ifdef EnableConsoleToARM9 7 | 8 | extern void _consolePrint(const char* s); 9 | extern void _consolePrintf(const char* format, ...); 10 | 11 | #else 12 | 13 | static inline void _consolePrint(const char* s) { 14 | } 15 | 16 | static inline void _consolePrintf(const char* format, ...) { 17 | } 18 | 19 | #endif 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /source/arm7/source/a7sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/a7sleep.cpp -------------------------------------------------------------------------------- /source/arm7/source/a7sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/a7sleep.h -------------------------------------------------------------------------------- /source/arm7/source/filesys.h: -------------------------------------------------------------------------------- 1 | 2 | #include "filesysARM7.h" 3 | 4 | -------------------------------------------------------------------------------- /source/arm7/source/filesysARM7.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef filesysARM7_h 3 | #define filesysARM7_h 4 | 5 | #include 6 | 7 | int FileSys_GetFileSize(void); 8 | int FileSys_MP2_fread(void *buf,int size); 9 | 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /source/arm7/source/fpga/pcm1770.h: -------------------------------------------------------------------------------- 1 | #ifndef _PCM1770_H_ 2 | #define _PCM1770_H_ 3 | 4 | void pcm1770_set_volumemute(bool mute); 5 | void pcm1770_set_volume(int lvol,int rvol); 6 | void pcm1770_setup(void); 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /source/arm7/source/fpga/rawpcm.h: -------------------------------------------------------------------------------- 1 | #ifndef _RAWPCM_H_ 2 | #define _RAWPCM_H_ 3 | 4 | extern void RAWPCM_Start_48kHzBypass(void); 5 | extern void RAWPCM_Start_VarFreq(u32 rate); 6 | extern void RAWPCM_Stop(void); 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /source/arm7/source/fpga/romeo2_hp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/fpga/romeo2_hp.cpp -------------------------------------------------------------------------------- /source/arm7/source/fpga/romeo2_hp.h: -------------------------------------------------------------------------------- 1 | #ifndef __ROMEO2_HP_H__ 2 | #define __ROMEO2_HP_H__ 3 | 4 | #define HP_NO_CONNECT 0x00 5 | #define HP_MONO 0x01 6 | #define HP_STEREO 0x03 7 | #define HP_VIDEO 0x04 8 | 9 | int hp_sense_connect(void); 10 | 11 | #define HP_SWITCH_ON 1 12 | #define HP_SWITCH_OFF 0 13 | int hp_sense_switch(void); 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /source/arm7/source/internal/heap.s: -------------------------------------------------------------------------------- 1 | @;; Copyright ARM Ltd 2002. All rights reserved. 2 | 3 | @ AREA Heap, DATA, NOINIT 4 | 5 | .global bottom_of_heap 6 | 7 | @ Create dummy variable used to locate bottom of heap 8 | .section .heap 9 | 10 | bottom_of_heap: 11 | .skip 1 12 | 13 | 14 | -------------------------------------------------------------------------------- /source/arm7/source/internal/init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/internal/init.s -------------------------------------------------------------------------------- /source/arm7/source/libmp2/COPYRIGHT: -------------------------------------------------------------------------------- 1 | 2 | libmad - MPEG audio decoder library 3 | Copyright (C) 2000-2004 Underbit Technologies, Inc. 4 | 5 | This program is free software; you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation; either version 2 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program; if not, write to the Free Software 17 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 | 19 | If you would like to negotiate alternate licensing terms, you may do 20 | so by contacting: Underbit Technologies, Inc. 21 | 22 | -------------------------------------------------------------------------------- /source/arm7/source/libmp2/VERSION: -------------------------------------------------------------------------------- 1 | 0.15.1b 2 | configure.ac:24 3 | version.h:25-28 4 | msvc++/config.h:99,105,120 5 | msvc++/mad.h:41-44 6 | 7 | Makefile.am:98-100 8 | -------------------------------------------------------------------------------- /source/arm7/source/libmp2/libmad.list.in: -------------------------------------------------------------------------------- 1 | # @configure_input@ 2 | 3 | # Directories... 4 | $prefix=@prefix@ 5 | $exec_prefix=@exec_prefix@ 6 | $srcdir=@srcdir@ 7 | 8 | # Product information 9 | %product @PACKAGE@ 10 | %copyright GPL 11 | %vendor Underbit Technologies, Inc. 12 | %license @srcdir@/COPYING 13 | %readme @srcdir@/README 14 | %description libmad is an MPEG audio decoder library. 15 | %version @VERSION@ 16 | %packager Giuseppe "Cowo" Corbelli 17 | 18 | %system all 19 | f 0755 root root @libdir@/libmad.la .libs/libmad.lai 20 | f 0644 root root @libdir@/libmad.a .libs/libmad.a 21 | f 0644 root root @includedir@/mad.h mad.h 22 | -------------------------------------------------------------------------------- /source/arm7/source/main_fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/main_fpga.h -------------------------------------------------------------------------------- /source/arm7/source/main_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/main_proc.h -------------------------------------------------------------------------------- /source/arm7/source/maindef.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef maindef_h 3 | #define maindef_h 4 | 5 | #include "_console.h" 6 | 7 | extern const char ROMTITLE[]; 8 | extern const char ROMVERSION[]; 9 | extern const char ROMDATE[]; 10 | extern const char ROMDATESHORT[]; 11 | extern const char ROMDATEVERYSHORT[]; 12 | extern const char ROMENV[]; 13 | extern const char ROMWEB[]; 14 | extern const char OverlayHeader_ID[]; 15 | extern const char OverlayHeader_ID_CanNotAccess[]; 16 | 17 | #endif 18 | 19 | -------------------------------------------------------------------------------- /source/arm7/source/memtool.h: -------------------------------------------------------------------------------- 1 | 2 | #include "memtoolARM7.h" 3 | 4 | -------------------------------------------------------------------------------- /source/arm7/source/memtoolARM7.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef memtoolARM7_h 3 | #define memtoolARM7_h 4 | 5 | #include 6 | 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | #define ALIGN32 __attribute__ ((align(4))) 12 | 13 | void SetMemoryMode(bool _MappedVRAM); 14 | void SetMemoryMode_End(void); 15 | 16 | void* safemalloc(int size); 17 | void safefree(void *ptr); 18 | 19 | //void MemSet16CPU(vu16 v,void *dst,u32 len); 20 | //void MemSet32CPU(u32 v,void *dst,u32 len); 21 | void MemCopy16DMA3(void *src,void *dst,u32 len); 22 | //void MemCopy32DMA3(void *src,void *dst,u32 len); 23 | void MemSet16DMA3(u16 v,void *dst,u32 len); 24 | //void MemSet32DMA3(u32 v,void *dst,u32 len); 25 | 26 | #define MemCopy32swi256bit(src,dst,len) swiFastCopy(src,dst,COPY_MODE_COPY | ((len)>>2) ); 27 | 28 | u32 PrintFreeMem(void); 29 | 30 | #ifdef __cplusplus 31 | } 32 | #endif 33 | 34 | #endif 35 | 36 | -------------------------------------------------------------------------------- /source/arm7/source/plug_mp2.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _MP2_h 3 | #define _MP2_h 4 | 5 | #define MP2Title "libmad - MPEG audio decoder library" 6 | 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | void MP2_SetFunc_consolePrintf(u32 adr); 12 | 13 | bool StartMP2(void); 14 | void FlashFileBufferMP2(void); 15 | u32 UpdateMP2(s16 *lbuf,s16 *rbuf); 16 | void FreeMP2(void); 17 | 18 | u32 MP2_GetChannelCount(void); 19 | u32 MP2_GetSampleRate(void); 20 | u32 MP2_GetSamplePerFrame(void); 21 | 22 | u32 MP2_GetBitRate(void); 23 | 24 | #ifdef __cplusplus 25 | } 26 | #endif 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /source/arm7/source/resources/bin2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/resources/bin2c.exe -------------------------------------------------------------------------------- /source/arm7/source/resources/snd_click.bat: -------------------------------------------------------------------------------- 1 | bin2c.exe snd_click_short_c.b2c 2 | bin2c.exe snd_click_long_c.b2c 3 | -------------------------------------------------------------------------------- /source/arm7/source/resources/snd_click_long_c.b2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/resources/snd_click_long_c.b2c -------------------------------------------------------------------------------- /source/arm7/source/resources/snd_click_long_c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/resources/snd_click_long_c.bin -------------------------------------------------------------------------------- /source/arm7/source/resources/snd_click_long_c_bin.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Moonlight. 2 | 3 | #ifndef snd_click_long_c_bin_h 4 | #define snd_click_long_c_bin_h 5 | 6 | #define snd_click_long_c_bin_Count (2756) 7 | #define snd_click_long_c_bin_Size (2756) 8 | extern const signed char snd_click_long_c_bin[2756]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm7/source/resources/snd_click_short_c.b2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/resources/snd_click_short_c.b2c -------------------------------------------------------------------------------- /source/arm7/source/resources/snd_click_short_c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm7/source/resources/snd_click_short_c.bin -------------------------------------------------------------------------------- /source/arm7/source/resources/snd_click_short_c_bin.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Moonlight. 2 | 3 | #ifndef snd_click_short_c_bin_h 4 | #define snd_click_short_c_bin_h 5 | 6 | #define snd_click_short_c_bin_Count (386) 7 | #define snd_click_short_c_bin_Size (386) 8 | extern const signed char snd_click_short_c_bin[386]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/build/Ay_Apu.d: -------------------------------------------------------------------------------- 1 | Ay_Apu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Ay/Ay_Apu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Ay/Ay_Apu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Ay/Ay_Apu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Ay_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Ay_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Ay_Cpu.d: -------------------------------------------------------------------------------- 1 | Ay_Cpu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Ay/Ay_Cpu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Ay/Ay_Cpu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_endian.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Ay/Ay_Cpu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_endian.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Ay_Cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Ay_Cpu.o -------------------------------------------------------------------------------- /source/arm9/build/Ay_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Ay_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/BMPReader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/BMPReader.o -------------------------------------------------------------------------------- /source/arm9/build/Blip_Buffer.d: -------------------------------------------------------------------------------- 1 | Blip_Buffer.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h 4 | 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 6 | -------------------------------------------------------------------------------- /source/arm9/build/Blip_Buffer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Blip_Buffer.o -------------------------------------------------------------------------------- /source/arm9/build/BootROM.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/BootROM.o -------------------------------------------------------------------------------- /source/arm9/build/Classic_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Classic_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Data_Reader.d: -------------------------------------------------------------------------------- 1 | Data_Reader.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Data_Reader.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Data_Reader.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_endian.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Data_Reader.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_endian.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Data_Reader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Data_Reader.o -------------------------------------------------------------------------------- /source/arm9/build/Dual_Resampler.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Dual_Resampler.o -------------------------------------------------------------------------------- /source/arm9/build/Effects_Buffer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Effects_Buffer.o -------------------------------------------------------------------------------- /source/arm9/build/ErrorDialog.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/ErrorDialog.o -------------------------------------------------------------------------------- /source/arm9/build/Fir_Resampler.d: -------------------------------------------------------------------------------- 1 | Fir_Resampler.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Fir_Resampler.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Fir_Resampler.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 7 | 8 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Fir_Resampler.h: 9 | 10 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 11 | 12 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 13 | 14 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 15 | -------------------------------------------------------------------------------- /source/arm9/build/Fir_Resampler.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Fir_Resampler.o -------------------------------------------------------------------------------- /source/arm9/build/Gb_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Gb_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Gb_Cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Gb_Cpu.o -------------------------------------------------------------------------------- /source/arm9/build/Gb_Oscs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Gb_Oscs.o -------------------------------------------------------------------------------- /source/arm9/build/Gbs_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Gbs_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Gme_File.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Gme_File.o -------------------------------------------------------------------------------- /source/arm9/build/Gym_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Gym_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Hes_Apu.d: -------------------------------------------------------------------------------- 1 | Hes_Apu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Hes/Hes_Apu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Hes/Hes_Apu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Hes/Hes_Apu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Hes_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Hes_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Hes_Cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Hes_Cpu.o -------------------------------------------------------------------------------- /source/arm9/build/Hes_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Hes_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Kss_Cpu.d: -------------------------------------------------------------------------------- 1 | Kss_Cpu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Kss/Kss_Cpu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Kss/Kss_Cpu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_endian.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Kss/Kss_Cpu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_endian.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Kss_Cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Kss_Cpu.o -------------------------------------------------------------------------------- /source/arm9/build/Kss_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Kss_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Kss_Scc_Apu.d: -------------------------------------------------------------------------------- 1 | Kss_Scc_Apu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Kss/Kss_Scc_Apu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Kss/Kss_Scc_Apu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Kss/Kss_Scc_Apu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Kss_Scc_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Kss_Scc_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/M3u_Playlist.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/M3u_Playlist.o -------------------------------------------------------------------------------- /source/arm9/build/Multi_Buffer.d: -------------------------------------------------------------------------------- 1 | Multi_Buffer.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Multi_Buffer.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Multi_Buffer.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Multi_Buffer.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Multi_Buffer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Multi_Buffer.o -------------------------------------------------------------------------------- /source/arm9/build/Music_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Music_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/NDSFiles.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/NDSFiles.o -------------------------------------------------------------------------------- /source/arm9/build/NDSROMIcon.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/NDSROMIcon.o -------------------------------------------------------------------------------- /source/arm9/build/Nes_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nes_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Nes_Cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nes_Cpu.o -------------------------------------------------------------------------------- /source/arm9/build/Nes_Fme7_Apu.d: -------------------------------------------------------------------------------- 1 | Nes_Fme7_Apu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Fme7_Apu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Fme7_Apu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Fme7_Apu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Nes_Fme7_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nes_Fme7_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Nes_Namco_Apu.d: -------------------------------------------------------------------------------- 1 | Nes_Namco_Apu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Namco_Apu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Namco_Apu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Namco_Apu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Nes_Namco_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nes_Namco_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Nes_Oscs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nes_Oscs.o -------------------------------------------------------------------------------- /source/arm9/build/Nes_Vrc6_Apu.d: -------------------------------------------------------------------------------- 1 | Nes_Vrc6_Apu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Vrc6_Apu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Vrc6_Apu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Nes/Nes_Vrc6_Apu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Nes_Vrc6_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nes_Vrc6_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Nsf_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nsf_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Nsfe_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Nsfe_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/OverlayManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/OverlayManager.o -------------------------------------------------------------------------------- /source/arm9/build/ProgramID.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/ProgramID.o -------------------------------------------------------------------------------- /source/arm9/build/Sap_Apu.d: -------------------------------------------------------------------------------- 1 | Sap_Apu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Sap/Sap_Apu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Sap/Sap_Apu.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h \ 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h \ 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/format_Sap/Sap_Apu.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_common.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_config.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/Blip_Buffer.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/blargg_source.h: 18 | -------------------------------------------------------------------------------- /source/arm9/build/Sap_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Sap_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Sap_Cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Sap_Cpu.o -------------------------------------------------------------------------------- /source/arm9/build/Sap_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Sap_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Sms_Apu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Sms_Apu.o -------------------------------------------------------------------------------- /source/arm9/build/Snes_Spc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Snes_Spc.o -------------------------------------------------------------------------------- /source/arm9/build/Spc_Cpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Spc_Cpu.o -------------------------------------------------------------------------------- /source/arm9/build/Spc_Dsp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Spc_Dsp.o -------------------------------------------------------------------------------- /source/arm9/build/Spc_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Spc_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/ThumbDPG.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/ThumbDPG.o -------------------------------------------------------------------------------- /source/arm9/build/ThumbIPK.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/ThumbIPK.o -------------------------------------------------------------------------------- /source/arm9/build/Vgm_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Vgm_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Vgm_Emu_Impl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Vgm_Emu_Impl.o -------------------------------------------------------------------------------- /source/arm9/build/VideoResume.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/VideoResume.o -------------------------------------------------------------------------------- /source/arm9/build/Ym2413_Emu.d: -------------------------------------------------------------------------------- 1 | Ym2413_Emu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Ym2413_Emu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Ym2413_Emu.h 4 | 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Ym2413_Emu.h: 6 | -------------------------------------------------------------------------------- /source/arm9/build/Ym2413_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Ym2413_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/Ym2612_Emu.d: -------------------------------------------------------------------------------- 1 | Ym2612_Emu.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Ym2612_Emu.cpp \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Ym2612_Emu.h 4 | 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libgme/disabled/Ym2612_Emu.h: 6 | -------------------------------------------------------------------------------- /source/arm9/build/Ym2612_Emu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/Ym2612_Emu.o -------------------------------------------------------------------------------- /source/arm9/build/_console.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/_console.o -------------------------------------------------------------------------------- /source/arm9/build/_consoleWriteLog.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/_consoleWriteLog.o -------------------------------------------------------------------------------- /source/arm9/build/_console_font_fixed6x6_packed_bin.d: -------------------------------------------------------------------------------- 1 | _console_font_fixed6x6_packed_bin.o: \ 2 | /fishshell2gcc-code/source/arm9/source/resource/_console_font_fixed6x6_packed_bin.c 3 | -------------------------------------------------------------------------------- /source/arm9/build/_console_font_fixed6x6_packed_bin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/_console_font_fixed6x6_packed_bin.o -------------------------------------------------------------------------------- /source/arm9/build/_dpgfs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/_dpgfs.o -------------------------------------------------------------------------------- /source/arm9/build/_libogg_dsp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/_libogg_dsp.o -------------------------------------------------------------------------------- /source/arm9/build/_libogg_mdct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/_libogg_mdct.o -------------------------------------------------------------------------------- /source/arm9/build/_libogg_misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/_libogg_misc.o -------------------------------------------------------------------------------- /source/arm9/build/adler32.d: -------------------------------------------------------------------------------- 1 | adler32.o: /fishshell2gcc-code/source/arm9/source/zlib/adler32.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h 4 | 5 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 6 | 7 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 8 | -------------------------------------------------------------------------------- /source/arm9/build/adler32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/adler32.o -------------------------------------------------------------------------------- /source/arm9/build/alloc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/alloc.o -------------------------------------------------------------------------------- /source/arm9/build/bit.d: -------------------------------------------------------------------------------- 1 | bit.o: /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/bit.c \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/bit.h 4 | 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h: 6 | 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/bit.h: 8 | -------------------------------------------------------------------------------- /source/arm9/build/bit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/bit.o -------------------------------------------------------------------------------- /source/arm9/build/bitwise.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/bitwise.o -------------------------------------------------------------------------------- /source/arm9/build/bootwarn_b8zlib.d: -------------------------------------------------------------------------------- 1 | bootwarn_b8zlib.o: \ 2 | /fishshell2gcc-code/source/arm9/source/resource/bootwarn_b8zlib.c 3 | -------------------------------------------------------------------------------- /source/arm9/build/bootwarn_b8zlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/bootwarn_b8zlib.o -------------------------------------------------------------------------------- /source/arm9/build/cctf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cctf.o -------------------------------------------------------------------------------- /source/arm9/build/cctf_dfs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cctf_dfs.o -------------------------------------------------------------------------------- /source/arm9/build/cfont.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cfont.o -------------------------------------------------------------------------------- /source/arm9/build/cglb15.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cglb15.o -------------------------------------------------------------------------------- /source/arm9/build/cglcanvas.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cglcanvas.o -------------------------------------------------------------------------------- /source/arm9/build/cglfont.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cglfont.o -------------------------------------------------------------------------------- /source/arm9/build/cglscreenmain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cglscreenmain.o -------------------------------------------------------------------------------- /source/arm9/build/cglscreenoverlay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cglscreenoverlay.o -------------------------------------------------------------------------------- /source/arm9/build/cglscreensub.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cglscreensub.o -------------------------------------------------------------------------------- /source/arm9/build/cglstream.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cglstream.o -------------------------------------------------------------------------------- /source/arm9/build/cgltgf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cgltgf.o -------------------------------------------------------------------------------- /source/arm9/build/cipk_simple.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cipk_simple.o -------------------------------------------------------------------------------- /source/arm9/build/clibdpg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/clibdpg.o -------------------------------------------------------------------------------- /source/arm9/build/clibmpg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/clibmpg.o -------------------------------------------------------------------------------- /source/arm9/build/codebook.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/codebook.o -------------------------------------------------------------------------------- /source/arm9/build/component.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/component.o -------------------------------------------------------------------------------- /source/arm9/build/crc32.d: -------------------------------------------------------------------------------- 1 | crc32.o: /fishshell2gcc-code/source/arm9/source/zlib/crc32.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 4 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h 5 | 6 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h: 7 | 8 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 9 | 10 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 11 | -------------------------------------------------------------------------------- /source/arm9/build/crc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/crc32.o -------------------------------------------------------------------------------- /source/arm9/build/cstream.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cstream.o -------------------------------------------------------------------------------- /source/arm9/build/cstream_fs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/cstream_fs.o -------------------------------------------------------------------------------- /source/arm9/build/datetime.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/datetime.o -------------------------------------------------------------------------------- /source/arm9/build/decode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/decode.o -------------------------------------------------------------------------------- /source/arm9/build/decoder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/decoder.o -------------------------------------------------------------------------------- /source/arm9/build/deflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/deflate.o -------------------------------------------------------------------------------- /source/arm9/build/dgif_lib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/dgif_lib.o -------------------------------------------------------------------------------- /source/arm9/build/disc_io.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/disc_io.o -------------------------------------------------------------------------------- /source/arm9/build/dll.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/dll.o -------------------------------------------------------------------------------- /source/arm9/build/dllsound.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/dllsound.o -------------------------------------------------------------------------------- /source/arm9/build/euc2unicode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/euc2unicode.o -------------------------------------------------------------------------------- /source/arm9/build/extlink.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/extlink.o -------------------------------------------------------------------------------- /source/arm9/build/extmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/extmem.o -------------------------------------------------------------------------------- /source/arm9/build/extmem_DSBM.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/extmem_DSBM.o -------------------------------------------------------------------------------- /source/arm9/build/extmem_EZ3in1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/extmem_EZ3in1.o -------------------------------------------------------------------------------- /source/arm9/build/extmem_M3ExtPack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/extmem_M3ExtPack.o -------------------------------------------------------------------------------- /source/arm9/build/extmem_RawMem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/extmem_RawMem.o -------------------------------------------------------------------------------- /source/arm9/build/extmem_SuperCard.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/extmem_SuperCard.o -------------------------------------------------------------------------------- /source/arm9/build/fastlzss16decpalasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/fastlzss16decpalasm.o -------------------------------------------------------------------------------- /source/arm9/build/fastlzss16decpalasm_body.d: -------------------------------------------------------------------------------- 1 | fastlzss16decpalasm_body.o: \ 2 | /fishshell2gcc-code/source/arm9/source/libs/fastlzss16decpalasm_body.s 3 | -------------------------------------------------------------------------------- /source/arm9/build/fastlzss16decpalasm_body.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/fastlzss16decpalasm_body.o -------------------------------------------------------------------------------- /source/arm9/build/fat2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/fat2.o -------------------------------------------------------------------------------- /source/arm9/build/fixed.d: -------------------------------------------------------------------------------- 1 | fixed.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/fixed.c \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/fixed.h 5 | 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h: 7 | 8 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/fixed.h: 9 | -------------------------------------------------------------------------------- /source/arm9/build/fixed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/fixed.o -------------------------------------------------------------------------------- /source/arm9/build/floor0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/floor0.o -------------------------------------------------------------------------------- /source/arm9/build/floor1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/floor1.o -------------------------------------------------------------------------------- /source/arm9/build/floor_lookup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/floor_lookup.o -------------------------------------------------------------------------------- /source/arm9/build/fpga_helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/fpga_helper.o -------------------------------------------------------------------------------- /source/arm9/build/frame.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/frame.o -------------------------------------------------------------------------------- /source/arm9/build/framing.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/framing.o -------------------------------------------------------------------------------- /source/arm9/build/gba_nds_fat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/gba_nds_fat.o -------------------------------------------------------------------------------- /source/arm9/build/gif_err.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/gif_err.o -------------------------------------------------------------------------------- /source/arm9/build/gifalloc.d: -------------------------------------------------------------------------------- 1 | gifalloc.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Image/libgif/gifalloc.c \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Image/libgif/gif_lib.h 4 | 5 | /fishshell2gcc-code/source/arm9/source/plugin/Image/libgif/gif_lib.h: 6 | -------------------------------------------------------------------------------- /source/arm9/build/gifalloc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/gifalloc.o -------------------------------------------------------------------------------- /source/arm9/build/glglobal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/glglobal.o -------------------------------------------------------------------------------- /source/arm9/build/glmemtool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/glmemtool.o -------------------------------------------------------------------------------- /source/arm9/build/gme.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/gme.o -------------------------------------------------------------------------------- /source/arm9/build/guidxcrcerror_b8zlib.d: -------------------------------------------------------------------------------- 1 | guidxcrcerror_b8zlib.o: \ 2 | /fishshell2gcc-code/source/arm9/source/resource/guidxcrcerror_b8zlib.c 3 | -------------------------------------------------------------------------------- /source/arm9/build/guidxcrcerror_b8zlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/guidxcrcerror_b8zlib.o -------------------------------------------------------------------------------- /source/arm9/build/header.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/header.o -------------------------------------------------------------------------------- /source/arm9/build/hiddenpaths.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/hiddenpaths.o -------------------------------------------------------------------------------- /source/arm9/build/huffman.d: -------------------------------------------------------------------------------- 1 | huffman.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/huffman.c \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/huffman.h 5 | 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h: 7 | 8 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/huffman.h: 9 | -------------------------------------------------------------------------------- /source/arm9/build/huffman.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/huffman.o -------------------------------------------------------------------------------- /source/arm9/build/idct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/idct.o -------------------------------------------------------------------------------- /source/arm9/build/infback.d: -------------------------------------------------------------------------------- 1 | infback.o: /fishshell2gcc-code/source/arm9/source/zlib/infback.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 4 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h \ 5 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h \ 6 | /fishshell2gcc-code/source/arm9/source/zlib/inflate.h \ 7 | /fishshell2gcc-code/source/arm9/source/zlib/inffast.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/zlib/inflate.h: 18 | 19 | /fishshell2gcc-code/source/arm9/source/zlib/inffast.h: 20 | -------------------------------------------------------------------------------- /source/arm9/build/infback.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/infback.o -------------------------------------------------------------------------------- /source/arm9/build/inffast.d: -------------------------------------------------------------------------------- 1 | inffast.o: /fishshell2gcc-code/source/arm9/source/zlib/inffast.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 4 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h \ 5 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h \ 6 | /fishshell2gcc-code/source/arm9/source/zlib/inflate.h \ 7 | /fishshell2gcc-code/source/arm9/source/zlib/inffast.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/zlib/inflate.h: 18 | 19 | /fishshell2gcc-code/source/arm9/source/zlib/inffast.h: 20 | -------------------------------------------------------------------------------- /source/arm9/build/inffast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/inffast.o -------------------------------------------------------------------------------- /source/arm9/build/inflate.d: -------------------------------------------------------------------------------- 1 | inflate.o: /fishshell2gcc-code/source/arm9/source/zlib/inflate.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 4 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h \ 5 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h \ 6 | /fishshell2gcc-code/source/arm9/source/zlib/inflate.h \ 7 | /fishshell2gcc-code/source/arm9/source/zlib/inffast.h 8 | 9 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 14 | 15 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h: 16 | 17 | /fishshell2gcc-code/source/arm9/source/zlib/inflate.h: 18 | 19 | /fishshell2gcc-code/source/arm9/source/zlib/inffast.h: 20 | -------------------------------------------------------------------------------- /source/arm9/build/inflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/inflate.o -------------------------------------------------------------------------------- /source/arm9/build/info.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/info.o -------------------------------------------------------------------------------- /source/arm9/build/inftrees.d: -------------------------------------------------------------------------------- 1 | inftrees.o: /fishshell2gcc-code/source/arm9/source/zlib/inftrees.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 4 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h \ 5 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h 6 | 7 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h: 8 | 9 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 12 | 13 | /fishshell2gcc-code/source/arm9/source/zlib/inftrees.h: 14 | -------------------------------------------------------------------------------- /source/arm9/build/inftrees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/inftrees.o -------------------------------------------------------------------------------- /source/arm9/build/inifile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/inifile.o -------------------------------------------------------------------------------- /source/arm9/build/jcomapi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jcomapi.o -------------------------------------------------------------------------------- /source/arm9/build/jdapimin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdapimin.o -------------------------------------------------------------------------------- /source/arm9/build/jdapistd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdapistd.o -------------------------------------------------------------------------------- /source/arm9/build/jdatasrc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdatasrc.o -------------------------------------------------------------------------------- /source/arm9/build/jdcoefct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdcoefct.o -------------------------------------------------------------------------------- /source/arm9/build/jdcolor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdcolor.o -------------------------------------------------------------------------------- /source/arm9/build/jddctmgr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jddctmgr.o -------------------------------------------------------------------------------- /source/arm9/build/jdhuff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdhuff.o -------------------------------------------------------------------------------- /source/arm9/build/jdinput.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdinput.o -------------------------------------------------------------------------------- /source/arm9/build/jdmainct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdmainct.o -------------------------------------------------------------------------------- /source/arm9/build/jdmarker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdmarker.o -------------------------------------------------------------------------------- /source/arm9/build/jdmaster.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdmaster.o -------------------------------------------------------------------------------- /source/arm9/build/jdmerge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdmerge.o -------------------------------------------------------------------------------- /source/arm9/build/jdphuff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdphuff.o -------------------------------------------------------------------------------- /source/arm9/build/jdpostct.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdpostct.o -------------------------------------------------------------------------------- /source/arm9/build/jdsample.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jdsample.o -------------------------------------------------------------------------------- /source/arm9/build/jerror.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jerror.o -------------------------------------------------------------------------------- /source/arm9/build/jidctfst.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jidctfst.o -------------------------------------------------------------------------------- /source/arm9/build/jidctred.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jidctred.o -------------------------------------------------------------------------------- /source/arm9/build/jmemansi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jmemansi.o -------------------------------------------------------------------------------- /source/arm9/build/jmemmgr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jmemmgr.o -------------------------------------------------------------------------------- /source/arm9/build/jpeg_idct_ifast_clip_asm.d: -------------------------------------------------------------------------------- 1 | jpeg_idct_ifast_clip_asm.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Image/libjpeg/jpeg_idct_ifast_clip_asm.s 3 | -------------------------------------------------------------------------------- /source/arm9/build/jpeg_idct_ifast_clip_asm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jpeg_idct_ifast_clip_asm.o -------------------------------------------------------------------------------- /source/arm9/build/jquant1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jquant1.o -------------------------------------------------------------------------------- /source/arm9/build/jutils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/jutils.o -------------------------------------------------------------------------------- /source/arm9/build/lang.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/lang.o -------------------------------------------------------------------------------- /source/arm9/build/launchstate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/launchstate.o -------------------------------------------------------------------------------- /source/arm9/build/layer12.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/layer12.o -------------------------------------------------------------------------------- /source/arm9/build/layer3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/layer3.o -------------------------------------------------------------------------------- /source/arm9/build/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/main.o -------------------------------------------------------------------------------- /source/arm9/build/mapping0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/mapping0.o -------------------------------------------------------------------------------- /source/arm9/build/md5c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/md5c.o -------------------------------------------------------------------------------- /source/arm9/build/memtool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/memtool.o -------------------------------------------------------------------------------- /source/arm9/build/motion_comp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/motion_comp.o -------------------------------------------------------------------------------- /source/arm9/build/motion_comp_arm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/motion_comp_arm.o -------------------------------------------------------------------------------- /source/arm9/build/motion_comp_arm_s.d: -------------------------------------------------------------------------------- 1 | motion_comp_arm_s.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Video/libmpeg2/motion_comp_arm_s.s 3 | -------------------------------------------------------------------------------- /source/arm9/build/motion_comp_arm_s.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/motion_comp_arm_s.o -------------------------------------------------------------------------------- /source/arm9/build/msgwin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/msgwin.o -------------------------------------------------------------------------------- /source/arm9/build/mtrk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/mtrk.o -------------------------------------------------------------------------------- /source/arm9/build/particle.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/particle.o -------------------------------------------------------------------------------- /source/arm9/build/pch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pch.o -------------------------------------------------------------------------------- /source/arm9/build/playlist.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/playlist.o -------------------------------------------------------------------------------- /source/arm9/build/plug_bmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_bmp.o -------------------------------------------------------------------------------- /source/arm9/build/plug_dpg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_dpg.o -------------------------------------------------------------------------------- /source/arm9/build/plug_gif.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_gif.o -------------------------------------------------------------------------------- /source/arm9/build/plug_gme.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_gme.o -------------------------------------------------------------------------------- /source/arm9/build/plug_jpeg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_jpeg.o -------------------------------------------------------------------------------- /source/arm9/build/plug_lyric.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_lyric.o -------------------------------------------------------------------------------- /source/arm9/build/plug_midi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_midi.o -------------------------------------------------------------------------------- /source/arm9/build/plug_mp2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_mp2.o -------------------------------------------------------------------------------- /source/arm9/build/plug_mp3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_mp3.o -------------------------------------------------------------------------------- /source/arm9/build/plug_ndsrom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_ndsrom.o -------------------------------------------------------------------------------- /source/arm9/build/plug_ogg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_ogg.o -------------------------------------------------------------------------------- /source/arm9/build/plug_png.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_png.o -------------------------------------------------------------------------------- /source/arm9/build/plug_psd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_psd.o -------------------------------------------------------------------------------- /source/arm9/build/plug_srttitle.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_srttitle.o -------------------------------------------------------------------------------- /source/arm9/build/plug_wav.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/plug_wav.o -------------------------------------------------------------------------------- /source/arm9/build/png.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/png.o -------------------------------------------------------------------------------- /source/arm9/build/pngerror.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngerror.o -------------------------------------------------------------------------------- /source/arm9/build/pngget.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngget.o -------------------------------------------------------------------------------- /source/arm9/build/pngmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngmem.o -------------------------------------------------------------------------------- /source/arm9/build/pngread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngread.o -------------------------------------------------------------------------------- /source/arm9/build/pngrio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngrio.o -------------------------------------------------------------------------------- /source/arm9/build/pngrtran.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngrtran.o -------------------------------------------------------------------------------- /source/arm9/build/pngrutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngrutil.o -------------------------------------------------------------------------------- /source/arm9/build/pngset.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngset.o -------------------------------------------------------------------------------- /source/arm9/build/pngtrans.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/pngtrans.o -------------------------------------------------------------------------------- /source/arm9/build/proc_AudioCustom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_AudioCustom.o -------------------------------------------------------------------------------- /source/arm9/build/proc_BinView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_BinView.o -------------------------------------------------------------------------------- /source/arm9/build/proc_BootROM.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_BootROM.o -------------------------------------------------------------------------------- /source/arm9/build/proc_Custom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_Custom.o -------------------------------------------------------------------------------- /source/arm9/build/proc_DPGCustom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_DPGCustom.o -------------------------------------------------------------------------------- /source/arm9/build/proc_DPGPlay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_DPGPlay.o -------------------------------------------------------------------------------- /source/arm9/build/proc_FileList.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_FileList.o -------------------------------------------------------------------------------- /source/arm9/build/proc_ImageCustom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_ImageCustom.o -------------------------------------------------------------------------------- /source/arm9/build/proc_ImageView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_ImageView.o -------------------------------------------------------------------------------- /source/arm9/build/proc_Launch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_Launch.o -------------------------------------------------------------------------------- /source/arm9/build/proc_MemoEdit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_MemoEdit.o -------------------------------------------------------------------------------- /source/arm9/build/proc_MemoList.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_MemoList.o -------------------------------------------------------------------------------- /source/arm9/build/proc_TextCustom.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_TextCustom.o -------------------------------------------------------------------------------- /source/arm9/build/proc_TextMenu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_TextMenu.o -------------------------------------------------------------------------------- /source/arm9/build/proc_TextView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_TextView.o -------------------------------------------------------------------------------- /source/arm9/build/proc_chkdsk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_chkdsk.o -------------------------------------------------------------------------------- /source/arm9/build/proc_setup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_setup.o -------------------------------------------------------------------------------- /source/arm9/build/proc_sysmenu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/proc_sysmenu.o -------------------------------------------------------------------------------- /source/arm9/build/procstate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/procstate.o -------------------------------------------------------------------------------- /source/arm9/build/rcplib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/rcplib.o -------------------------------------------------------------------------------- /source/arm9/build/rect.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/rect.o -------------------------------------------------------------------------------- /source/arm9/build/res012.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/res012.o -------------------------------------------------------------------------------- /source/arm9/build/resume.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/resume.o -------------------------------------------------------------------------------- /source/arm9/build/romeo2_ncd.d: -------------------------------------------------------------------------------- 1 | romeo2_ncd.o: \ 2 | /fishshell2gcc-code/source/arm9/source/resource/romeo2_ncd.c 3 | -------------------------------------------------------------------------------- /source/arm9/build/romeo2_ncd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/romeo2_ncd.o -------------------------------------------------------------------------------- /source/arm9/build/shell.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/shell.o -------------------------------------------------------------------------------- /source/arm9/build/shell_SystemAfter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/shell_SystemAfter.o -------------------------------------------------------------------------------- /source/arm9/build/skin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/skin.o -------------------------------------------------------------------------------- /source/arm9/build/slice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/slice.o -------------------------------------------------------------------------------- /source/arm9/build/smidlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/smidlib.o -------------------------------------------------------------------------------- /source/arm9/build/smidlib_sm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/smidlib_sm.o -------------------------------------------------------------------------------- /source/arm9/build/snd_click_long_c_bin.d: -------------------------------------------------------------------------------- 1 | snd_click_long_c_bin.o: \ 2 | /fishshell2gcc-code/source/arm9/source/resource/snd_click_long_c_bin.c 3 | -------------------------------------------------------------------------------- /source/arm9/build/snd_click_long_c_bin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/snd_click_long_c_bin.o -------------------------------------------------------------------------------- /source/arm9/build/snd_click_short_c_bin.d: -------------------------------------------------------------------------------- 1 | snd_click_short_c_bin.o: \ 2 | /fishshell2gcc-code/source/arm9/source/resource/snd_click_short_c_bin.c 3 | -------------------------------------------------------------------------------- /source/arm9/build/snd_click_short_c_bin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/snd_click_short_c_bin.o -------------------------------------------------------------------------------- /source/arm9/build/sndeff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/sndeff.o -------------------------------------------------------------------------------- /source/arm9/build/sndeff_dfs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/sndeff_dfs.o -------------------------------------------------------------------------------- /source/arm9/build/sndfont.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/sndfont.o -------------------------------------------------------------------------------- /source/arm9/build/splash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/splash.o -------------------------------------------------------------------------------- /source/arm9/build/stream.d: -------------------------------------------------------------------------------- 1 | stream.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/stream.c \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/bit.h \ 5 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/stream.h 6 | 7 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h: 8 | 9 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/bit.h: 10 | 11 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/stream.h: 12 | -------------------------------------------------------------------------------- /source/arm9/build/stream.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/stream.o -------------------------------------------------------------------------------- /source/arm9/build/strpcm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/strpcm.o -------------------------------------------------------------------------------- /source/arm9/build/strtool.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/strtool.o -------------------------------------------------------------------------------- /source/arm9/build/synth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/synth.o -------------------------------------------------------------------------------- /source/arm9/build/timer.d: -------------------------------------------------------------------------------- 1 | timer.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/timer.c \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/timer.h 5 | 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h: 7 | 8 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/timer.h: 9 | -------------------------------------------------------------------------------- /source/arm9/build/timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/timer.o -------------------------------------------------------------------------------- /source/arm9/build/trees.d: -------------------------------------------------------------------------------- 1 | trees.o: /fishshell2gcc-code/source/arm9/source/zlib/trees.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/deflate.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h \ 4 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 5 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h \ 6 | /fishshell2gcc-code/source/arm9/source/zlib/trees.h 7 | 8 | /fishshell2gcc-code/source/arm9/source/zlib/deflate.h: 9 | 10 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h: 11 | 12 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 13 | 14 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 15 | 16 | /fishshell2gcc-code/source/arm9/source/zlib/trees.h: 17 | -------------------------------------------------------------------------------- /source/arm9/build/trees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/trees.o -------------------------------------------------------------------------------- /source/arm9/build/unicode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/unicode.o -------------------------------------------------------------------------------- /source/arm9/build/version.d: -------------------------------------------------------------------------------- 1 | version.o: \ 2 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/version.c \ 3 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h \ 4 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/version.h 5 | 6 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/global.h: 7 | 8 | /fishshell2gcc-code/source/arm9/source/plugin/Sound/libmp3/version.h: 9 | -------------------------------------------------------------------------------- /source/arm9/build/version.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/version.o -------------------------------------------------------------------------------- /source/arm9/build/versionerror_b8zlib.d: -------------------------------------------------------------------------------- 1 | versionerror_b8zlib.o: \ 2 | /fishshell2gcc-code/source/arm9/source/resource/versionerror_b8zlib.c 3 | -------------------------------------------------------------------------------- /source/arm9/build/versionerror_b8zlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/versionerror_b8zlib.o -------------------------------------------------------------------------------- /source/arm9/build/vorbisfile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/vorbisfile.o -------------------------------------------------------------------------------- /source/arm9/build/vramcache.d: -------------------------------------------------------------------------------- 1 | vramcache.o: /fishshell2gcc-code/source/arm9/source/vramcache.s 2 | -------------------------------------------------------------------------------- /source/arm9/build/vramcache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/vramcache.o -------------------------------------------------------------------------------- /source/arm9/build/zlibhelp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/zlibhelp.o -------------------------------------------------------------------------------- /source/arm9/build/zutil.d: -------------------------------------------------------------------------------- 1 | zutil.o: /fishshell2gcc-code/source/arm9/source/zlib/zutil.c \ 2 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h \ 3 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h \ 4 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h 5 | 6 | /fishshell2gcc-code/source/arm9/source/zlib/zutil.h: 7 | 8 | /fishshell2gcc-code/source/arm9/source/zlib/zlib.h: 9 | 10 | /fishshell2gcc-code/source/arm9/source/zlib/zconf.h: 11 | -------------------------------------------------------------------------------- /source/arm9/build/zutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/build/zutil.o -------------------------------------------------------------------------------- /source/arm9/fish_arm9.specs: -------------------------------------------------------------------------------- 1 | %rename link old_link 2 | 3 | *link: 4 | %(old_link) -T fish_arm9.ld%s 5 | 6 | *startfile: 7 | ds_arm9_crt0%O%s crti%O%s crtbegin%O%s 8 | 9 | -------------------------------------------------------------------------------- /source/arm9/fishell2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/fishell2.elf -------------------------------------------------------------------------------- /source/arm9/source/BootROM.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BootROM_h 3 | #define BootROM_h 4 | 5 | extern void BootROM_Init(void); 6 | 7 | extern bool BootROM_GetExecuteFlag(void); 8 | extern const char* BootROM_GetFullPathAlias(void); 9 | extern const UnicodeChar* BootROM_GetPathUnicode(void); 10 | extern const UnicodeChar* BootROM_GetFilenameUnicode(void); 11 | 12 | extern void BootROM_SetInfo_TextEdit(const UnicodeChar *pPathUnicode,const UnicodeChar *pFilenameUnicode,bool RequestBackupSave); 13 | extern void BootROM_SetInfo_NoLaunch(const UnicodeChar *pPathUnicode,const UnicodeChar *pFilenameUnicode,bool RequestBackupSave); 14 | extern void BootROM_SetInfo(const UnicodeChar *pPathUnicode,const UnicodeChar *pFilenameUnicode,bool RequestBackupSave); 15 | 16 | extern bool BootROM_isExistsSoftResetToFirmware(void); 17 | 18 | extern void BootROM_SoftResetToFirmware(void); 19 | 20 | extern bool BootROM_CheckNDSHomeBrew(const char *pFilename); 21 | extern void BootROM_Execute(void); 22 | 23 | #endif 24 | 25 | -------------------------------------------------------------------------------- /source/arm9/source/NDSROMIcon.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef NDSROMIcon_h 3 | #define NDSROMIcon_h 4 | 5 | #include 6 | 7 | #include "glib.h" 8 | 9 | #define NDSROMIcon32Width (32) 10 | #define NDSROMIcon32Height (32) 11 | #define NDSROMIcon16Width (16) 12 | #define NDSROMIcon16Height (16) 13 | 14 | #define NDSROMIconXMargin (2) 15 | 16 | typedef struct { 17 | u16 Size32BM[NDSROMIcon32Width*NDSROMIcon32Height]; 18 | u16 Size16BM[NDSROMIcon16Width*NDSROMIcon16Height]; 19 | u8 Size16Alpha[NDSROMIcon16Width*NDSROMIcon16Height]; 20 | } TNDSROMIcon; 21 | 22 | extern bool NDSROMIcon_Get(const char *pFilenameAlias,TNDSROMIcon *pNDSROMIcon,u16 *pJpnTitle ,u16 *pEngTitle,bool *isCommercialROM); 23 | extern void NDSROMIcon_DrawIcon16(TNDSROMIcon *pNDSROMIcon,CglCanvas *ptagbm,u32 dx,u32 dy); 24 | extern void NDSROMIcon_DrawIcon32(TNDSROMIcon *pNDSROMIcon,CglCanvas *ptagbm,u32 dx,u32 dy); 25 | extern bool NDSROMIcon_isLoaded(TNDSROMIcon *pNDSROMIcon); 26 | 27 | #endif 28 | 29 | -------------------------------------------------------------------------------- /source/arm9/source/PlaySE.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef PlaySE_h 3 | #define PlaySE_h 4 | 5 | static void PlaySE_Sequence(u32 Count,bool AddLong) 6 | { 7 | if(ProcState.System.ClickSound==false) return; 8 | 9 | while(IPC6->ClickSE.Apply==true); 10 | 11 | IPC6->ClickSE.Volume=128; 12 | IPC6->ClickSE.Count=Count; 13 | IPC6->ClickSE.AddLong=AddLong; 14 | IPC6->ClickSE.Apply=true; 15 | } 16 | 17 | static void PlaySE_Short(void) 18 | { 19 | if(ProcState.System.ClickSound==false) return; 20 | 21 | while(IPC6->ClickSE.Apply==true); 22 | 23 | IPC6->ClickSE.Volume=128; 24 | IPC6->ClickSE.Count=1; 25 | IPC6->ClickSE.AddLong=false; 26 | IPC6->ClickSE.Apply=true; 27 | } 28 | 29 | static void PlaySE_Long(void) 30 | { 31 | if(ProcState.System.ClickSound==false) return; 32 | 33 | while(IPC6->ClickSE.Apply==true); 34 | 35 | IPC6->ClickSE.Volume=128; 36 | IPC6->ClickSE.Count=0; 37 | IPC6->ClickSE.AddLong=true; 38 | IPC6->ClickSE.Apply=true; 39 | } 40 | 41 | #endif 42 | 43 | -------------------------------------------------------------------------------- /source/arm9/source/ProgramID.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | #include "_const.h" 5 | #include "maindef.h" 6 | 7 | const char ROMTITLE[]="FishShell"; 8 | //const char ROMVERSION[]="for iSmart Premium"; 9 | const char ROMVERSION[]="(GCC) alpha4"; 10 | const char ROMDATE[]=""__DATE__" "__TIME__" GMT+08:00"; 11 | const char ROMDATESHORT[]=""__DATE__" "__TIME__""; 12 | const char ROMDATEVERYSHORT[]=""__DATE__""; 13 | const char ROMENV[]="ARM RVCT3.1 [Build 1021]"; 14 | const char ROMWEB[]="http://www.fishome.org"; 15 | 16 | const char OverlayHeader_ID[]="_VRC FishShell OverlayCode9 "__DATE__" "__TIME__" GMT+08:00"; 17 | __attribute__ ((section (".OverlayHeader"))) const char OverlayHeader_ID_CanNotAccess[]="OVRC FishShell OverlayCode9 "__DATE__" "__TIME__" GMT+08:00" "\0\0\0\0"; 18 | -------------------------------------------------------------------------------- /source/arm9/source/_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/_console.cpp -------------------------------------------------------------------------------- /source/arm9/source/_consoleWriteLog.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | #include "_console.h" 5 | #include "_consoleWriteLog.h" 6 | 7 | void PrfStart(void) 8 | { 9 | TIMER0_CR=0; 10 | TIMER0_DATA=0; 11 | TIMER0_CR=TIMER_ENABLE | TIMER_DIV_1; 12 | TIMER1_CR=0; 13 | TIMER1_DATA=0; 14 | TIMER1_CR=TIMER_ENABLE | TIMER_CASCADE; 15 | } 16 | 17 | void PrfEnd(int data) 18 | { 19 | vu32 t0d=TIMER0_DATA; 20 | vu32 t1d=TIMER1_DATA; 21 | 22 | u32 us=(t1d<<16) | t0d; 23 | 24 | float fus=us/((float)33513982/1000/1000); 25 | 26 | _consolePrintf("prf data=%d %6dus\n",data,(u32)fus); 27 | } 28 | 29 | u32 PrfEnd_GetCPUCount(void) 30 | { 31 | vu32 t0d=TIMER0_DATA; 32 | vu32 t1d=TIMER1_DATA; 33 | 34 | return((t1d<<16) | t0d); 35 | } 36 | 37 | u32 PrfEnd_Getus(void) 38 | { 39 | vu32 t0d=TIMER0_DATA; 40 | vu32 t1d=TIMER1_DATA; 41 | 42 | u32 us=(t1d<<16) | t0d; 43 | 44 | float fus=us/((float)33513982/1000/1000); 45 | return(fus); 46 | } 47 | 48 | -------------------------------------------------------------------------------- /source/arm9/source/_consoleWriteLog.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _consoleWriteLog_h 3 | #define _consoleWriteLog_h 4 | 5 | //#define WriteLogFILELINE 6 | 7 | #ifdef WriteLogFILELINE 8 | #define cwl(); _cwl(__FILE__,__LINE__); 9 | #else 10 | #define cwl(); 11 | #endif 12 | 13 | extern void PrfStart(void); 14 | extern void PrfEnd(int data); 15 | extern u32 PrfEnd_GetCPUCount(void); 16 | extern u32 PrfEnd_Getus(void); 17 | 18 | static inline void _cwl(char *file,int line) 19 | { 20 | char *seek=file; 21 | 22 | while(*seek!=0){ 23 | if(*seek=='/') file=seek; 24 | seek++; 25 | } 26 | 27 | _consolePrintf("%s%d",file,line); 28 | } 29 | 30 | #endif 31 | -------------------------------------------------------------------------------- /source/arm9/source/_console_LogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/_console_LogFile.h -------------------------------------------------------------------------------- /source/arm9/source/_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/_const.h -------------------------------------------------------------------------------- /source/arm9/source/dllsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/dllsound.cpp -------------------------------------------------------------------------------- /source/arm9/source/dllsound_internal_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/dllsound_internal_ogg.h -------------------------------------------------------------------------------- /source/arm9/source/dllsound_internal_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/dllsound_internal_wav.h -------------------------------------------------------------------------------- /source/arm9/source/euc2unicode.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef euc2unicode_h 3 | #define euc2unicode_h 4 | 5 | #include 6 | #include "unicode.h" 7 | 8 | typedef struct { 9 | void *pBinary; 10 | s32 BinarySize; 11 | const u8 *panktbl; 12 | const u16 *ps2utbl; 13 | u16 *pu2stbl; 14 | } TEUC2Unicode; 15 | 16 | extern TEUC2Unicode EUC2Unicode; 17 | 18 | extern void EUC2Unicode_Init(void); 19 | extern void EUC2Unicode_Free(void); 20 | extern void EUC2Unicode_Load(void); 21 | extern void EUC2Unicode_Convert(const char *pStrL,UnicodeChar *pStrW,u32 dstlen); 22 | extern void Unicode2EUC_Convert(const UnicodeChar *pStrW,char *pStrL,u32 dstlen); 23 | 24 | #endif 25 | 26 | -------------------------------------------------------------------------------- /source/arm9/source/extlink.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef extlink_h 3 | #define extlink_h 4 | 5 | extern void ExtLink_Init(void); 6 | extern void ExtLink_Free(void); 7 | extern u32 ExtLink_GetTargetIndex(u32 Ext32); 8 | extern const UnicodeChar* ExtLink_GetNDSFullPathFilenameUnicode(u32 idx); 9 | 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /source/arm9/source/extlink_filestruct.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef extlink_filestruct_h 3 | #define extlink_filestruct_h 4 | 5 | // extlink.dat structure 6 | 7 | typedef u16 UnicodeChar; 8 | 9 | #define ExtLinkBody_MaxLength (256) 10 | 11 | #define ExtLinkBody_ID (0x30545845) // EXT0 12 | 13 | typedef struct { 14 | u32 ID,dummy1,dummy2,dummy3; // dummy is ZERO. 15 | char DataFullPathFilenameAlias[ExtLinkBody_MaxLength]; 16 | char DataPathAlias[ExtLinkBody_MaxLength]; 17 | char DataFilenameAlias[ExtLinkBody_MaxLength]; 18 | char NDSFullPathFilenameAlias[ExtLinkBody_MaxLength]; 19 | char NDSPathAlias[ExtLinkBody_MaxLength]; 20 | char NDSFilenameAlias[ExtLinkBody_MaxLength]; 21 | UnicodeChar DataFullPathFilenameUnicode[ExtLinkBody_MaxLength]; 22 | UnicodeChar DataPathUnicode[ExtLinkBody_MaxLength]; 23 | UnicodeChar DataFilenameUnicode[ExtLinkBody_MaxLength]; 24 | UnicodeChar NDSFullPathFilenameUnicode[ExtLinkBody_MaxLength]; 25 | UnicodeChar NDSPathUnicode[ExtLinkBody_MaxLength]; 26 | UnicodeChar NDSFilenameUnicode[ExtLinkBody_MaxLength]; 27 | } TExtLinkBody; 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /source/arm9/source/fpga_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/fpga_helper.cpp -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/gba_nds_fat/gba_nds_fat.txt -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat_deletefile_def.h: -------------------------------------------------------------------------------- 1 | 2 | extern bool FAT_DeleteFile(const char *pSrcPath); 3 | 4 | -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat_getdirentry1.h: -------------------------------------------------------------------------------- 1 | lfnNameUnicode[0] = 0; 2 | -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat_getdirentry3.h: -------------------------------------------------------------------------------- 1 | lfnNameUnicode[(lfn.ordinal & ~LFN_END) * 13] = 0; // Set end of lfn to null character 2 | -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat_getdirentry4.h: -------------------------------------------------------------------------------- 1 | u16 *pcs[13]={&lfn.char0,&lfn.char1,&lfn.char2,&lfn.char3,&lfn.char4,&lfn.char5,&lfn.char6,&lfn.char7,&lfn.char8,&lfn.char9,&lfn.char10,&lfn.char11,&lfn.char12}; 2 | 3 | // rawdata(ansi) 4 | /* 5 | for(u32 idx=0;idx<13;idx++){ 6 | u8 *pc=(u8*)pcs[idx]; 7 | lfnName[lfnPos + idx] = pc[0]; 8 | } 9 | */ 10 | 11 | // rawdata(Unicode) 12 | 13 | for(u32 idx=0;idx<13;idx++){ 14 | u8 *pc=(u8*)pcs[idx]; 15 | u16 uc; 16 | uc=pc[0] | (pc[1]<<8); 17 | lfnNameUnicode[lfnPos + idx] = uc; 18 | } 19 | -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat_initfiles1.h: -------------------------------------------------------------------------------- 1 | lfnNameUnicode[i] = 0; 2 | -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat_lfnunicodedef.h: -------------------------------------------------------------------------------- 1 | __attribute__ ((section (".dtcm"))) UnicodeChar lfnNameUnicode[MAX_FILENAME_LENGTH]; 2 | -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/gba_nds_fat_move_def.h: -------------------------------------------------------------------------------- 1 | 2 | extern bool FAT_Move(const char *pSrcPath,const char *pDstPath); 3 | 4 | -------------------------------------------------------------------------------- /source/arm9/source/gba_nds_fat/mediatype.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef MediaType_h 3 | #define MediaType_h 4 | 5 | #define DIMT_NONE (0x454e4f4e) 6 | #define DIMT_MART (0x54414d49) 7 | 8 | extern u32 DIMediaType; 9 | extern const char *DIMediaName; 10 | extern char DIMediaID[5]; 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /source/arm9/source/glib/cglb15.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef CglB15_h 3 | #define CglB15_h 4 | 5 | #include 6 | #include 7 | 8 | #include "glmemtool.h" 9 | #include "cglcanvas.h" 10 | 11 | class CglB15 12 | { 13 | TMM *pMM; 14 | bool TransFlag; 15 | int Width,Height; 16 | u16 *data; 17 | CglB15(const CglB15&); 18 | CglB15& operator=(const CglB15&); 19 | public: 20 | CglCanvas *pCanvas; 21 | CglB15(TMM *_pMM,const u8 *_buf,const int _size); 22 | ~CglB15(void); 23 | int GetWidth(void) const; 24 | int GetHeight(void) const; 25 | void BitBlt(CglCanvas *pDestCanvas,const int nDestLeft,const int nDestTop,const int nWidth,const int nHeight,const int nSrcLeft,const int nSrcTop) const; 26 | }; 27 | 28 | #endif 29 | 30 | -------------------------------------------------------------------------------- /source/arm9/source/glib/cglcanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/glib/cglcanvas.cpp -------------------------------------------------------------------------------- /source/arm9/source/glib/cglfont.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef cglfont_h 3 | #define cglfont_h 4 | 5 | #include 6 | #include 7 | 8 | #include "glmemtool.h" 9 | #include "cglcanvas.h" 10 | #include "tglunicode.h" 11 | 12 | #define glFontHeight (12) 13 | 14 | class CglFont 15 | { 16 | TMM *pMM; 17 | u16 **DataTable; 18 | u16 *Data; 19 | u16 TextColor; 20 | CglFont(const CglFont&); 21 | CglFont& operator=(const CglFont&); 22 | u16* GetBulkData(const TglUnicode uidx) const; 23 | public: 24 | CglFont(TMM *_pMM,const u8 *_buf,const int _size); 25 | ~CglFont(void); 26 | void DrawFont(CglCanvas *pCanvas,const int x,const int y,const TglUnicode uidx) const; 27 | int GetFontWidth(const TglUnicode uidx) const; 28 | void SetTextColor(const u16 Color); 29 | bool isExists(const TglUnicode uidx) const; 30 | }; 31 | 32 | #endif 33 | 34 | -------------------------------------------------------------------------------- /source/arm9/source/glib/cglscreenmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/glib/cglscreenmain.cpp -------------------------------------------------------------------------------- /source/arm9/source/glib/cglstream.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef cglstream_h 3 | #define cglstream_h 4 | 5 | #include 6 | #include 7 | 8 | class CglStream 9 | { 10 | const u8 *buf; 11 | int size; 12 | int ofs; 13 | CglStream(const CglStream&); 14 | CglStream& operator=(const CglStream&); 15 | public: 16 | CglStream(const u8 *_buf,const int _size); 17 | ~CglStream(void); 18 | int GetOffset(void) const; 19 | void SetOffset(int _ofs); 20 | int GetSize(void) const; 21 | bool eof(void) const; 22 | u8 Readu8(void); 23 | u16 Readu16(void); 24 | u32 Readu32(void); 25 | void ReadBuffer(void *_dstbuf,const int _readsize); 26 | }; 27 | 28 | #endif 29 | 30 | -------------------------------------------------------------------------------- /source/arm9/source/glib/cgltgf.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef CglTGF_h 3 | #define CglTGF_h 4 | 5 | #include 6 | #include 7 | 8 | #include "glmemtool.h" 9 | #include "cglcanvas.h" 10 | 11 | class CglTGF 12 | { 13 | TMM *pMM; 14 | int Width,Height; 15 | u16 *pdata; 16 | u32 datasize; 17 | u16 **ppLineOffsets; 18 | CglTGF(const CglTGF&); 19 | CglTGF& operator=(const CglTGF&); 20 | public: 21 | CglTGF(TMM *_pMM,const u8 *_buf,const int _size); 22 | ~CglTGF(void); 23 | u32 GetDataSize(void) const; 24 | u16* GetData(void) const; 25 | int GetWidth(void) const; 26 | int GetHeight(void) const; 27 | void BitBlt(CglCanvas *pDestCanvas,const int nDestLeft,const int nDestTop) const; 28 | void BitBltLimitY(CglCanvas *pDestCanvas,const int nDestLeft,const int nDestTop,const int nHeight,const int nSrcTop) const; 29 | }; 30 | 31 | #endif 32 | 33 | -------------------------------------------------------------------------------- /source/arm9/source/glib/glglobal.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef glglobal_h 3 | #define glglobal_h 4 | 5 | #include 6 | #include 7 | 8 | #include "cglscreen.h" 9 | 10 | extern CglScreenMain *pScreenMain; 11 | extern CglScreenMainOverlay *pScreenMainOverlay; 12 | extern CglScreenSub *pScreenSub; 13 | 14 | // request 15 | // 192kb < VRAM_MAIN_BG 16 | // 96kb < VRAM_MAIN_SPRITE 17 | // 96kb < VRAM_SUB_SPRITE 18 | 19 | extern void glDefaultMemorySetting(void); 20 | extern void glDefaultClassCreate(void); 21 | extern void glDefaultClassFree(void); 22 | 23 | extern void glSetFuncDebugPrint(void (*_DebugPrint)(const char* s)); 24 | 25 | //void glDebugPrintf(const char* format, ...); 26 | 27 | extern void _consolePrintf(const char* format, ...); 28 | #define glDebugPrintf _consolePrintf 29 | 30 | extern volatile bool InterruptVsync_RequestFlickerFree; 31 | #endif 32 | 33 | -------------------------------------------------------------------------------- /source/arm9/source/glib/glmemtool.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | #include 5 | #include 6 | 7 | #include 8 | 9 | #include "glib.h" 10 | #include "glmemtool.h" 11 | 12 | -------------------------------------------------------------------------------- /source/arm9/source/glib/glmemtool.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef glmemtool_h 3 | #define glmemtool_h 4 | 5 | #include "memtool.h" 6 | 7 | #endif 8 | 9 | -------------------------------------------------------------------------------- /source/arm9/source/glib/tglunicode.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef tglunicode_h 3 | #define tglunicode_h 4 | 5 | #include 6 | #include 7 | 8 | typedef u16 TglUnicode; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/arm9/source/internal/heap.s: -------------------------------------------------------------------------------- 1 | ;;; Copyright ARM Ltd 2002. All rights reserved. 2 | 3 | AREA Heap, DATA, NOINIT 4 | 5 | EXPORT bottom_of_heap 6 | 7 | ; Create dummy variable used to locate bottom of heap 8 | 9 | bottom_of_heap SPACE 1 10 | 11 | END 12 | 13 | -------------------------------------------------------------------------------- /source/arm9/source/internal/init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/internal/init.s -------------------------------------------------------------------------------- /source/arm9/source/internaldrivers.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef internaldrivers_h 3 | #define internaldrivers_h 4 | 5 | #define ExceptMP3 6 | #define ExceptMIDI 7 | #define ExceptGME 8 | #define ExceptOGG 9 | #define ExceptWAVE 10 | #define ExceptJpeg 11 | #define ExceptBmp 12 | #define ExceptGif 13 | #define ExceptPng 14 | #define ExceptPsd 15 | 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /source/arm9/source/libs/BMPReader.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BMPReader_h 3 | #define BMPReader_h 4 | 5 | extern bool BMPReader_Start(FAT_FILE *_FileHandle); 6 | extern void BMPReader_Free(void); 7 | extern void BMPReader_GetBitmap32(u32 LineY,u32 *pBM); 8 | extern s32 BMPReader_GetWidth(void); 9 | extern s32 BMPReader_GetHeight(void); 10 | 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /source/arm9/source/libs/ErrorDialog.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef ErrorDialog_h 3 | #define ErrorDialog_h 4 | 5 | #include 6 | #include "glib.h" 7 | 8 | enum EErrorCode { 9 | EEC_MemoryOverflow_CanRecovery, 10 | EEC_NotSupportFileFormat, 11 | EEC_ProgressiveJpeg, 12 | EEC_Text0byte, 13 | EEC_OverflowLargeImage, 14 | EEC_NotFoundMusicFile, 15 | 16 | EEC_UnknownError, 17 | }; 18 | 19 | extern void ErrorDialog_Init(void); 20 | extern void ErrorDialog_Clear(void); 21 | extern bool ErrorDialog_isExists(void); 22 | extern void ErrorDialog_Set(EErrorCode _ErrorCode); 23 | extern void ErrorDialog_Draw(CglCanvas *pcan); 24 | 25 | #endif 26 | 27 | -------------------------------------------------------------------------------- /source/arm9/source/libs/OverlayManager.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef OverlayManager_h 3 | #define OverlayManager_h 4 | 5 | #include "maindef.h" 6 | 7 | extern void OVM_Init(void); 8 | extern void OVM_Free(void); 9 | 10 | extern u32 OVM_GetRomeo2NCD_Size(void); 11 | extern void OVM_GetRomeo2NCD_Data(void *pdstbuf,u32 dstbufsize); 12 | 13 | extern void OVM_proc_MainPass(void); 14 | 15 | extern void OVM_proc_Start(ENextProc NextProc); 16 | 17 | extern void OVM_libsnd_mp3(void); 18 | extern void OVM_libsnd_midi(void); 19 | extern void OVM_libsnd_gme(void); 20 | extern void OVM_libsnd_ogg(void); 21 | extern void OVM_libsnd_wave(void); 22 | 23 | extern void OVM_libimg_jpeg(void); 24 | extern void OVM_libimg_png(void); 25 | extern void OVM_libimg_bmp(void); 26 | extern void OVM_libimg_gif(void); 27 | extern void OVM_libimg_psd(void); 28 | 29 | extern void OVM_libglobal_dpg(void); 30 | extern void OVM_libglobal_ndsrom(void); 31 | 32 | extern void OVM_LoadAfterSystem(void); 33 | extern void OVM_LoadAfterSystem2(void); 34 | 35 | #endif 36 | 37 | -------------------------------------------------------------------------------- /source/arm9/source/libs/VideoResume.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef videoresume_h 3 | #define videoresume_h 4 | 5 | #include "unicode.h" 6 | #include "shell.h" 7 | 8 | extern void VideoResume_Clear(void); 9 | extern bool VideoResume_isOpened(void); 10 | extern void VideoResume_Open(void); 11 | extern void VideoResume_Close(void); 12 | extern void VideoResume_Save(void); 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /source/arm9/source/libs/cstream.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef cstream_h 3 | #define cstream_h 4 | 5 | #include 6 | #include 7 | 8 | class CStream 9 | { 10 | const u8 *buf; 11 | CStream(const CStream&); 12 | CStream& operator=(const CStream&); 13 | protected: 14 | int size; 15 | int ofs; 16 | public: 17 | CStream(const u8 *_buf,const int _size); 18 | virtual ~CStream(void); 19 | virtual int GetOffset(void) const; 20 | virtual void SetOffset(int _ofs); 21 | virtual int GetSize(void) const; 22 | virtual void OverrideSize(int _size); 23 | virtual bool eof(void) const; 24 | virtual u8 Readu8(void); 25 | virtual u16 Readu16(void); 26 | virtual u32 Readu32(void); 27 | virtual int ReadBuffer(void *_dstbuf,const int _readsize); 28 | virtual int ReadBuffer16bit(void *_dstbuf,const int _readsize); 29 | virtual int ReadBuffer32bit(void *_dstbuf,const int _readsize); 30 | virtual void ReadSkip(const int _readsize); 31 | }; 32 | 33 | #endif 34 | 35 | -------------------------------------------------------------------------------- /source/arm9/source/libs/cstream_fs.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef cstream_fs_h 3 | #define cstream_fs_h 4 | 5 | #include 6 | #include 7 | 8 | #include "cstream.h" 9 | #include "fat2.h" 10 | 11 | class CStreamFS: public CStream 12 | { 13 | FAT_FILE *file; 14 | CStreamFS(const CStreamFS&); 15 | CStreamFS& operator=(const CStreamFS&); 16 | public: 17 | CStreamFS(FAT_FILE *_file); 18 | virtual ~CStreamFS(void); 19 | virtual int GetOffset(void) const; 20 | virtual void SetOffset(int _ofs); 21 | virtual int GetSize(void) const; 22 | virtual void OverrideSize(int _size); 23 | virtual bool eof(void) const; 24 | virtual u8 Readu8(void); 25 | virtual u16 Readu16(void); 26 | virtual u32 Readu32(void); 27 | virtual int ReadBuffer(void *_dstbuf,const int _readsize); 28 | // fast request 16bit aligned file position and write buffer 29 | virtual int ReadBuffer16bit(void *_dstbuf,const int _readsize); 30 | virtual int ReadBuffer32bit(void *_dstbuf,const int _readsize); 31 | virtual void ReadSkip(const int _readsize); 32 | }; 33 | 34 | #endif 35 | 36 | -------------------------------------------------------------------------------- /source/arm9/source/libs/extmem.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef extmem_h 3 | #define extmem_h 4 | 5 | typedef struct { 6 | const char *pID; 7 | u32 MaxSizeByte; 8 | u32 TopAddr,CurAddr,TermAddr; 9 | u32 AllocateCount; 10 | } Textmem; 11 | 12 | extern Textmem extmem; 13 | 14 | extern void extmem_Init(void); 15 | extern void extmem_Start(void); 16 | extern void* extmem_malloc(u32 size); 17 | extern void extmem_ShowMemoryInfo(void); 18 | extern void extmem_ShowMallocInfo(void); 19 | extern const char* extmem_GetID(void); 20 | extern u32 extmem_GetPureMaxSizeByte(void); 21 | extern u32 extmem_GetMaxSizeByte(void); 22 | extern u32 extmem_GetTopAddr(void); 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /source/arm9/source/libs/extmem_RawMem.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include <_const.h> 4 | 5 | DATA_IN_IWRAM_MainPass u32 extmem_RawMem_Start(void) 6 | { 7 | return(0x08000000); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /source/arm9/source/libs/extmem_SuperCard.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include <_const.h> 4 | 5 | // --- SC stuff 6 | 7 | #define SSC_Disabled (0) 8 | #define SSC_SDRAM (1) 9 | #define SSC_CF (2) 10 | 11 | #define SC_REG_UNLOCK *(vu16*)(0x09FFFFFE) 12 | DATA_IN_IWRAM_MainPass static void SetSC_UNLOCK(int SSC) 13 | { 14 | switch(SSC){ 15 | case SSC_Disabled: 16 | SC_REG_UNLOCK = 0xA55A; 17 | SC_REG_UNLOCK = 0xA55A; 18 | SC_REG_UNLOCK = 0x0001; 19 | SC_REG_UNLOCK = 0x0001; 20 | break; 21 | case SSC_SDRAM: 22 | SC_REG_UNLOCK = 0xA55A; 23 | SC_REG_UNLOCK = 0xA55A; 24 | SC_REG_UNLOCK = 0x0005; 25 | SC_REG_UNLOCK = 0x0005; 26 | break; 27 | case SSC_CF: 28 | SC_REG_UNLOCK = 0xA55A; 29 | SC_REG_UNLOCK = 0xA55A; 30 | SC_REG_UNLOCK = 0x0003; 31 | SC_REG_UNLOCK = 0x0003; 32 | } 33 | } 34 | #undef SC_REG_UNLOCK 35 | 36 | DATA_IN_IWRAM_MainPass u32 extmem_SuperCard_Start(void) 37 | { 38 | SetSC_UNLOCK(SSC_SDRAM); 39 | return(0x08000000); 40 | } 41 | 42 | -------------------------------------------------------------------------------- /source/arm9/source/libs/fastlzss16decpalasm.h: -------------------------------------------------------------------------------- 1 | 2 | // fastlzss16decpalasm.cpp last update 2007/06/22 by Moonlight. 3 | 4 | // 書き込みバッファ終端以降に最大126byteの無効な書き込みを行うので、_pdstは+126byte余分に確保しておくこと。 5 | 6 | #ifndef _fastlzss16decpalasm_h 7 | #define _fastlzss16decpalasm_h 8 | 9 | #include 10 | 11 | #define fastlzss16decpalasm_GUARDSIZE (((31*2)+1)*2) 12 | 13 | extern void fastlzss16decpalasm_init(void); 14 | extern u32 fastlzss16decpalasm_getdecsize(const void *_psrc); 15 | extern void fastlzss16decpalasm_decode(const void *_psrc,void *_pdst,u32 *ppal32); 16 | 17 | #endif 18 | 19 | -------------------------------------------------------------------------------- /source/arm9/source/libs/fastlzss16decpalasm_body.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/fastlzss16decpalasm_body.s -------------------------------------------------------------------------------- /source/arm9/source/libs/lang.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef lang_h 3 | #define lang_h 4 | 5 | extern void Lang_Load(void); 6 | extern void Lang_Free(void); 7 | 8 | extern const char* Lang_GetUTF8_internal(const char *pItemName,const char *pErrorMsg); 9 | 10 | #define Lang_GetUTF8(name) Lang_GetUTF8_internal(name,"LangErr:" name) 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /source/arm9/source/libs/launchstate.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef launchstate_h 3 | #define launchstate_h 4 | 5 | #include "unicode.h" 6 | #include "shell.h" 7 | 8 | extern void LaunchState_Clear(void); 9 | extern bool LaunchState_isOpened(void); 10 | extern void LaunchState_Open(void); 11 | extern void LaunchState_Close(void); 12 | extern void LaunchState_Save(void); 13 | 14 | enum ELaunchState_Tabs {ELST_Launch=0,ELST_NDS,ELST_Count}; 15 | 16 | extern void LaunchState_Add(ELaunchState_Tabs Tabs,const UnicodeChar *pFullPathUnicode); 17 | 18 | #define LaunchState_TabsCount (ELST_Count) 19 | #define LaunchState_Tab_FilesCountMax (5) 20 | 21 | typedef struct { 22 | u32 FilesCount; 23 | UnicodeChar FullPathUnicode[LaunchState_Tab_FilesCountMax][MaxFilenameLength]; 24 | } TLaunchState_Tab; 25 | 26 | typedef struct { 27 | u32 Version; 28 | ELaunchState_Tabs LastTab; 29 | TLaunchState_Tab Tabs[LaunchState_TabsCount]; 30 | u32 Reserved0,Reserved1,Reserved2,Reserved3; 31 | } TLaunchState; 32 | 33 | extern TLaunchState *pLaunchState; 34 | 35 | #endif 36 | 37 | -------------------------------------------------------------------------------- /source/arm9/source/libs/memtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/memtool.cpp -------------------------------------------------------------------------------- /source/arm9/source/libs/memtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/memtool.h -------------------------------------------------------------------------------- /source/arm9/source/libs/memtool_MM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/memtool_MM.h -------------------------------------------------------------------------------- /source/arm9/source/libs/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/rect.cpp -------------------------------------------------------------------------------- /source/arm9/source/libs/rect.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef rect_h 3 | #define rect_h 4 | 5 | #include 6 | 7 | typedef struct { 8 | s32 x,y,w,h; 9 | } TRect; 10 | 11 | typedef struct { 12 | s32 x,y; 13 | } TPoint; 14 | 15 | extern u32 GetDirtyRect_OutSide(TRect TagRect,TRect DelRect,TRect **ppRects); 16 | extern bool isInsideRect(TRect Rect,s32 x,s32 y); 17 | 18 | static inline TRect CreateRect(s32 x,s32 y,s32 w,s32 h) 19 | { 20 | TRect r; 21 | 22 | r.x=x; 23 | r.y=y; 24 | r.w=w; 25 | r.h=h; 26 | 27 | return(r); 28 | } 29 | 30 | static inline TPoint CreatePoint(s32 x,s32 y) 31 | { 32 | TPoint p; 33 | 34 | p.x=x; 35 | p.y=y; 36 | 37 | return(p); 38 | } 39 | 40 | #endif 41 | 42 | -------------------------------------------------------------------------------- /source/arm9/source/libs/resume.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef resume_h 3 | #define resume_h 4 | 5 | #include 6 | 7 | #include "unicode.h" 8 | 9 | enum EResumeMode {ERM_None,ERM_Video,ERM_Image,ERM_Text}; 10 | 11 | extern void Resume_Load(void); 12 | extern void Resume_Clear(void); 13 | extern void Resume_Save(void); 14 | 15 | extern void Resume_SetResumeMode(EResumeMode rm); 16 | extern void Resume_SetFilename(const UnicodeChar *pFullFilenameUnicode); 17 | extern void Resume_SetPos(u32 pos); 18 | 19 | extern EResumeMode Resume_GetResumeMode(void); 20 | extern const UnicodeChar* Resume_GetFilename(void); 21 | extern u32 Resume_GetPos(void); 22 | 23 | #endif 24 | 25 | -------------------------------------------------------------------------------- /source/arm9/source/libs/shell_ConvertFull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/shell_ConvertFull.h -------------------------------------------------------------------------------- /source/arm9/source/libs/shell_SystemAfter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/shell_SystemAfter.cpp -------------------------------------------------------------------------------- /source/arm9/source/libs/sndeff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/sndeff.h -------------------------------------------------------------------------------- /source/arm9/source/libs/sndeff_dfs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | #include "fat2.h" 5 | 6 | extern void SndEff_DFS_Init(FAT_FILE *FileHandle); 7 | extern void SndEff_DFS_Free(void); 8 | extern void SndEff_DFS_SetAttribute(u32 _DataTopOffset,u32 _Size); 9 | extern u32 SndEff_DFS_GetSize(void); 10 | extern void SndEff_DFS_SetOffset(u32 ofs); 11 | extern u32 SndEff_DFS_Read32bit(void *_pbuf,u32 size); 12 | 13 | -------------------------------------------------------------------------------- /source/arm9/source/libs/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/splash.cpp -------------------------------------------------------------------------------- /source/arm9/source/libs/splash.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef splash_h 3 | #define splash_h 4 | 5 | extern void Splash_IRQVSYNC(void); 6 | extern void Splash_Init(void); 7 | extern void Splash_Free(void); 8 | extern void Splash_DrawInfo(void); 9 | extern bool Splash_Update(void); 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/libs/strpcm_ARM7_SelfCheck.h: -------------------------------------------------------------------------------- 1 | 2 | static void ARM7_SelfCheck_Check(void) 3 | { 4 | EARM7SelfCheck E7SC=IPC6->ARM7SelfCheck; 5 | if(E7SC==E7SC_OK) return; 6 | 7 | REG_IME=0; 8 | 9 | switch(E7SC){ 10 | // case E7SC_OK: break; 11 | case E7SC_StackOverflow_SVC: StopFatalError(14501,"ARM7/SVC stack overflow signal received.\n"); break; 12 | case E7SC_StackOverflow_IRQ: StopFatalError(14502,"ARM7/IRQ stack overflow signal received.\n"); break; 13 | case E7SC_StackOverflow_SYS: StopFatalError(14503,"ARM7/SYS stack overflow signal received.\n"); break; 14 | default: StopFatalError(14504,"ARM7/Unknown(0x%x) stack overflow signal received.\n",E7SC); break; 15 | } 16 | 17 | while(1); 18 | } 19 | 20 | -------------------------------------------------------------------------------- /source/arm9/source/libs/strtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/libs/strtool.cpp -------------------------------------------------------------------------------- /source/arm9/source/libs/strtool.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef strtool_h 3 | #define strtool_h 4 | 5 | #include 6 | #include 7 | #include 8 | #include "memtool.h" 9 | 10 | extern void StrCopy(const char *src,char *dst); 11 | extern bool isNumeric(const char *s); 12 | extern bool isStrEqual(const char *s1,const char *s2); 13 | extern bool isStrEqual_NoCaseSensitive(const char *s1,const char *s2); 14 | extern void StrAppend(char *s,const char *add); 15 | extern char* StrTrim(char *src); 16 | extern char *StrReplace(char *s,char src,char dst); 17 | 18 | extern char* str_AllocateCopy(TMM *pMM,const char *src); 19 | 20 | static inline bool str_isEmpty(const char *psrc) 21 | { 22 | if(psrc==NULL) return(true); 23 | if(psrc[0]==0) return(true); 24 | return(false); 25 | } 26 | 27 | #define isdigit(c) (((c)>='0')&&((c)<='9')) 28 | #define isspace(c) ((c)==' ') 29 | 30 | #endif 31 | 32 | -------------------------------------------------------------------------------- /source/arm9/source/libs/zlibhelp.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef zlibhelp_h 3 | #define zlibhelp_h 4 | 5 | #include 6 | 7 | #define ZLIBTitle "ZLIB (C) 1995-2004 Jean-loup Gailly and Mark Adler" 8 | 9 | typedef struct { 10 | u32 SrcSize; 11 | u8 *pSrcBuf; 12 | u32 DstSize; 13 | u8 *pDstBuf; 14 | } TZLIBData; 15 | 16 | extern bool zlibcompress(TZLIBData *pZLIBData,u32 LimitSize); 17 | extern bool zlibdecompress(TZLIBData *pZLIBData); 18 | 19 | #endif 20 | 21 | -------------------------------------------------------------------------------- /source/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/main.cpp -------------------------------------------------------------------------------- /source/arm9/source/main_Trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/main_Trigger.h -------------------------------------------------------------------------------- /source/arm9/source/msgwin.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef msgwin_h 3 | #define msgwin_h 4 | 5 | #include 6 | 7 | extern void msgwin_Clear(void); 8 | extern void msgwin_Draw(const char *pstr0,const char *pstr1,u32 pos,u32 max); 9 | 10 | #endif 11 | 12 | -------------------------------------------------------------------------------- /source/arm9/source/particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/particle.cpp -------------------------------------------------------------------------------- /source/arm9/source/particle.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef particle_h 3 | #define particle_h 4 | 5 | void Particle_Init(void); 6 | void Particle_Free(void); 7 | void Particle_Update(u32 VsyncCount,CglCanvas *pcan); 8 | 9 | void Particle_SetMouseDown(s32 x,s32 y); 10 | void Particle_SetMouseMove(s32 x,s32 y); 11 | void Particle_SetMouseUp(void); 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /source/arm9/source/playlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/playlist.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libgif/AUTHORS: -------------------------------------------------------------------------------- 1 | Lennie Araki 2 | Windows code providing a nicer interface and example program 3 | 4 | Michael Brown 5 | callbacks to write data via user defined function 6 | 7 | Daniel Eisenbud 8 | Fixes for crashes with invalid gif files and double freeing of 9 | colormaps 10 | 11 | Gershon Elber 12 | original giflib code 13 | 14 | Marc Ewing 15 | spec file (for rpms) updates 16 | 17 | Toshio Kuratomi 18 | uncompressed gif writing code 19 | autoconf/automake process 20 | current maintainer 21 | 22 | Peter Mehlitz 23 | callbacks to read data from arbitrary sources (like libjpeg/libpng) 24 | 25 | Dick Porter 26 | int/pointer fixes for Alpha 27 | 28 | Eric Raymond 29 | long time maintainer of giflib code 30 | 31 | Georg Schwarz 32 | IRIX fixes 33 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libgif/BUGS: -------------------------------------------------------------------------------- 1 | Please report BUGS to the bug tracker on sourceforge: 2 | http://sourceforge.net/tracker/?group_id=102202 3 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libjpeg/jpeg_idct_ifast_clip_asm.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef jpeg_idct_ifast_clip_asm_h 3 | #define jpeg_idct_ifast_clip_asm_h 4 | 5 | extern "C" { 6 | void jpeg_idct_ifast_clip_asm (s32 *dstblock,s32 *pquant,s16 *psrcblock,unsigned char **ppLineBuf); 7 | } 8 | 9 | #endif 10 | 11 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libjpeg/jpeg_idct_ifast_clip_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Image/libjpeg/jpeg_idct_ifast_clip_asm.s -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libjpeg/jversion.h: -------------------------------------------------------------------------------- 1 | /* 2 | * jversion.h 3 | * 4 | * Copyright (C) 1991-1998, Thomas G. Lane. 5 | * This file is part of the Independent JPEG Group's software. 6 | * For conditions of distribution and use, see the accompanying README file. 7 | * 8 | * This file contains software version identification. 9 | */ 10 | 11 | 12 | #define JVERSION "6b 27-Mar-1998" 13 | 14 | #define JCOPYRIGHT "Copyright (C) 1998, Thomas G. Lane" 15 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Image/libpng/pngbar.jpg -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Image/libpng/pngbar.png -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Image/libpng/pngnow.png -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/libpng/pngusr.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | #include 5 | 6 | #include 7 | 8 | #include "_const.h" 9 | #include "_console.h" 10 | #include "_consoleWriteLog.h" 11 | #include "maindef.h" 12 | 13 | #include "memtool.h" 14 | 15 | #include "fat2.h" 16 | 17 | #define PNG_NO_ASSEMBLER_CODE 18 | 19 | #define PNG_SETJMP_NOT_SUPPORTED 20 | #define PNG_NO_SETJMP_SUPPORTED 21 | 22 | #define PNG_NO_WRITE_SUPPORTED 23 | 24 | #define PNG_NO_STDIO 25 | #define PNG_NO_MNG_FEATURES 26 | #define PNG_NO_FLOATING_POINT_SUPPORTED 27 | #define PNG_NO_FIXED_POINT_SUPPORTED 28 | 29 | #define PNG_NO_READ_UNKNOWN_CHUNKS 30 | #define PNG_NO_WRITE_UNKNOWN_CHUNKS 31 | 32 | #define PNG_USE_LOCAL_ARRAYS 33 | 34 | #define PNG_NO_ERROR_NUMBERS 35 | 36 | #define PNG_NO_READ_tIME 37 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/plug_bmp.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _plug_bmp_h 3 | #define _plug_bmp_h 4 | 5 | #include "fat2.h" 6 | 7 | extern bool PlugBmp_Start(FAT_FILE *_FileHandle); 8 | extern void PlugBmp_Free(void); 9 | extern void PlugBmp_GetBitmap24(u32 LineY,u8 *pBM); 10 | extern s32 PlugBmp_GetWidth(void); 11 | extern s32 PlugBmp_GetHeight(void); 12 | extern int PlugBmp_GetInfoIndexCount(void); 13 | extern bool PlugBmp_GetInfoStrL(int idx,char *str,int len); 14 | extern bool PlugBmp_GetInfoStrW(int idx,UnicodeChar *str,int len); 15 | extern bool PlugBmp_GetInfoStrUTF8(int idx,char *str,int len); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/plug_gif.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _plug_gif_h 3 | #define _plug_gif_h 4 | 5 | #include "fat2.h" 6 | 7 | extern bool PlugGif_Start(FAT_FILE *_FileHandle); 8 | extern void PlugGif_Free(void); 9 | extern void PlugGif_GetBitmap24(u32 LineY,u8 *pBM); 10 | extern s32 PlugGif_GetWidth(void); 11 | extern s32 PlugGif_GetHeight(void); 12 | extern int PlugGif_GetInfoIndexCount(void); 13 | extern bool PlugGif_GetInfoStrL(int idx,char *str,int len); 14 | extern bool PlugGif_GetInfoStrW(int idx,UnicodeChar *str,int len); 15 | extern bool PlugGif_GetInfoStrUTF8(int idx,char *str,int len); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/plug_jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Image/plug_jpeg.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/plug_jpeg.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _plug_jpeg_h 3 | #define _plug_jpeg_h 4 | 5 | #include "fat2.h" 6 | 7 | extern bool PlugJpeg_Start(FAT_FILE *_FileHandle,bool EnabledAutoFitting); 8 | extern void PlugJpeg_Free(void); 9 | extern void PlugJpeg_GetBitmap24(u32 LineY,u8 *pBM); 10 | extern s32 PlugJpeg_GetWidth(void); 11 | extern s32 PlugJpeg_GetHeight(void); 12 | extern int PlugJpeg_GetInfoIndexCount(void); 13 | extern bool PlugJpeg_GetInfoStrL(int idx,char *str,int len); 14 | extern bool PlugJpeg_GetInfoStrW(int idx,UnicodeChar *str,int len); 15 | extern bool PlugJpeg_GetInfoStrUTF8(int idx,char *str,int len); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/plug_png.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _plug_png_h 3 | #define _plug_png_h 4 | 5 | #include "fat2.h" 6 | 7 | extern bool PlugPng_Start(FAT_FILE *_FileHandle); 8 | extern void PlugPng_Free(void); 9 | extern void PlugPng_GetBitmap24(u32 LineY,u8 *pBM); 10 | extern s32 PlugPng_GetWidth(void); 11 | extern s32 PlugPng_GetHeight(void); 12 | extern int PlugPng_GetInfoIndexCount(void); 13 | extern bool PlugPng_GetInfoStrL(int idx,char *str,int len); 14 | extern bool PlugPng_GetInfoStrW(int idx,UnicodeChar *str,int len); 15 | extern bool PlugPng_GetInfoStrUTF8(int idx,char *str,int len); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Image/plug_psd.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _plug_psd_h 3 | #define _plug_psd_h 4 | 5 | #include "fat2.h" 6 | 7 | extern bool PlugPsd_Start(FAT_FILE *_FileHandle); 8 | extern void PlugPsd_Free(void); 9 | extern void PlugPsd_GetBitmap24(u32 LineY,u8 *pBM); 10 | extern s32 PlugPsd_GetWidth(void); 11 | extern s32 PlugPsd_GetHeight(void); 12 | extern int PlugPsd_GetInfoIndexCount(void); 13 | extern bool PlugPsd_GetInfoStrL(int idx,char *str,int len); 14 | extern bool PlugPsd_GetInfoStrW(int idx,UnicodeChar *str,int len); 15 | extern bool PlugPsd_GetInfoStrUTF8(int idx,char *str,int len); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libgme/config.h: -------------------------------------------------------------------------------- 1 | 2 | //#define NSF_EMU_APU_ONLY 1 3 | 4 | #define BLIP_BUFFER_FAST 1 5 | 6 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libgme/disabled/Ym2413_Emu.cpp: -------------------------------------------------------------------------------- 1 | 2 | // Use in place of Ym2413_Emu.cpp and ym2413.c to disable support for this chip 3 | 4 | // Game_Music_Emu 0.5.2. http://www.slack.net/~ant/ 5 | 6 | #include "Ym2413_Emu.h" 7 | 8 | Ym2413_Emu::Ym2413_Emu() { } 9 | 10 | Ym2413_Emu::~Ym2413_Emu() { } 11 | 12 | int Ym2413_Emu::set_rate( double, double ) { return 2; } 13 | 14 | void Ym2413_Emu::reset() { } 15 | 16 | void Ym2413_Emu::write( int, int ) { } 17 | 18 | void Ym2413_Emu::mute_voices( int ) { } 19 | 20 | void Ym2413_Emu::run( int, sample_t* ) { } 21 | 22 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libgme/disabled/Ym2413_Emu.h: -------------------------------------------------------------------------------- 1 | // YM2413 FM sound chip emulator interface 2 | 3 | // Game_Music_Emu 0.5.2 4 | #ifndef YM2413_EMU_H 5 | #define YM2413_EMU_H 6 | 7 | class Ym2413_Emu { 8 | struct OPLL* opll; 9 | public: 10 | Ym2413_Emu(); 11 | ~Ym2413_Emu(); 12 | 13 | // Set output sample rate and chip clock rates, in Hz. Returns non-zero 14 | // if error. 15 | int set_rate( double sample_rate, double clock_rate ); 16 | 17 | // Reset to power-up state 18 | void reset(); 19 | 20 | // Mute voice n if bit n (1 << n) of mask is set 21 | enum { channel_count = 14 }; 22 | void mute_voices( int mask ); 23 | 24 | // Write 'data' to 'addr' 25 | void write( int addr, int data ); 26 | 27 | // Run and write pair_count samples to output 28 | typedef short sample_t; 29 | enum { out_chan_count = 2 }; // stereo 30 | void run( int pair_count, sample_t* out ); 31 | }; 32 | 33 | #endif 34 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libgme/disabled/Ym2612_Emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Sound/libgme/disabled/Ym2612_Emu.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libgme/format_Sap/sap_cpu_io.h: -------------------------------------------------------------------------------- 1 | 2 | #include "Sap_Emu.h" 3 | 4 | #include "blargg_source.h" 5 | 6 | #define CPU_WRITE( cpu, addr, data, time ) STATIC_CAST(Sap_Emu&,*cpu).cpu_write( addr, data ) 7 | 8 | void Sap_Emu::cpu_write( sap_addr_t addr, int data ) 9 | { 10 | mem.ram [addr] = data; 11 | if ( (addr >> 8) == 0xD2 ) 12 | cpu_write_( addr, data ); 13 | } 14 | 15 | #ifdef NDEBUG 16 | #define CPU_READ( cpu, addr, time ) READ_LOW( addr ) 17 | #else 18 | #define CPU_READ( cpu, addr, time ) STATIC_CAST(Sap_Emu&,*cpu).cpu_read( addr ) 19 | 20 | int Sap_Emu::cpu_read( sap_addr_t addr ) 21 | { 22 | if ( (addr & 0xF900) == 0xD000 ) 23 | dprintf( "Unmapped read $%04X\n", addr ); 24 | return mem.ram [addr]; 25 | } 26 | #endif 27 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libgme/format_Sms/Sms_Oscs.h: -------------------------------------------------------------------------------- 1 | // Private oscillators used by Sms_Apu 2 | 3 | // Sms_Snd_Emu 0.1.4 4 | #ifndef SMS_OSCS_H 5 | #define SMS_OSCS_H 6 | 7 | #include "blargg_common.h" 8 | #include "Blip_Buffer.h" 9 | 10 | struct Sms_Osc 11 | { 12 | Blip_Buffer* outputs [4]; // NULL, right, left, center 13 | Blip_Buffer* output; 14 | int output_select; 15 | 16 | int delay; 17 | int last_amp; 18 | int volume; 19 | 20 | Sms_Osc(); 21 | void reset(); 22 | }; 23 | 24 | struct Sms_Square : Sms_Osc 25 | { 26 | int period; 27 | int phase; 28 | 29 | typedef Blip_Synth Synth; 30 | const Synth* synth; 31 | 32 | void reset(); 33 | void run( blip_time_t, blip_time_t ); 34 | }; 35 | 36 | struct Sms_Noise : Sms_Osc 37 | { 38 | const int* period; 39 | unsigned shifter; 40 | unsigned feedback; 41 | 42 | typedef Blip_Synth Synth; 43 | Synth synth; 44 | 45 | void reset(); 46 | void run( blip_time_t, blip_time_t ); 47 | }; 48 | 49 | #endif 50 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmidi/mtrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Sound/libmidi/mtrk.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmidi/mtrk.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef smidlib_mtrk_h 3 | #define smidlib_mtrk_h 4 | 5 | extern void MTRKCC_Init(void); 6 | extern void MTRKCC_Free(void); 7 | 8 | extern void MTRKCC_Proc(u32 trk,u8 data0,u8 data1); 9 | extern void MTRK_SetProgram(u32 trk,u32 v); 10 | extern void MTRK_ChangePitchBend(u32 trk,s32 p); 11 | extern void MTRK_NoteOn_LoadProgram(u32 trk,u32 Note,u32 Vel); 12 | extern void MTRK_NoteOn(u32 trk,u32 GT,u32 Note,u32 Vel); 13 | extern void MTRK_NoteOff(u32 trk,u32 Note,u32 Vel); 14 | 15 | extern void MTRK_SetExMap(u32 trk,u32 mode); 16 | 17 | #endif 18 | 19 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmidi/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Sound/libmidi/pch.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmidi/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Sound/libmidi/pch.h -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmidi/rcplib_rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Sound/libmidi/rcplib_rcp.h -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmidi/smidlib.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef smidlib_h 3 | #define smidlib_h 4 | 5 | #include "smidlib_sm.h" 6 | 7 | extern void smidlibSetParam(u8 *data,u32 SampleRate,u32 GenVolume); 8 | extern bool smidlibStart(void); 9 | extern void smidlibFree(void); 10 | extern int smidlibGetNearClock(void); 11 | extern bool smidlibNextClock(bool ShowEventMessage,bool EnableNote,int DecClock); 12 | extern void smidlibAllSoundOff(void); 13 | 14 | #endif 15 | 16 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmidi/sndfont.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef sndfont_h 3 | #define sndfont_h 4 | 5 | extern void SndFont_Open(void); 6 | extern void SndFont_Close(void); 7 | extern void SndFont_SetOffset(u32 ofs); 8 | extern u32 SndFont_Read16bit(void *_pbuf,u32 size); 9 | extern u32 SndFont_Get32bit(void); 10 | 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmp3/COPYRIGHT: -------------------------------------------------------------------------------- 1 | 2 | libmad - MPEG audio decoder library 3 | Copyright (C) 2000-2004 Underbit Technologies, Inc. 4 | 5 | This program is free software; you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation; either version 2 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program; if not, write to the Free Software 17 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 | 19 | If you would like to negotiate alternate licensing terms, you may do 20 | so by contacting: Underbit Technologies, Inc. 21 | 22 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmp3/VERSION: -------------------------------------------------------------------------------- 1 | 0.15.1b 2 | configure.ac:24 3 | version.h:25-28 4 | msvc++/config.h:99,105,120 5 | msvc++/mad.h:41-44 6 | 7 | Makefile.am:98-100 8 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libmp3/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Sound/libmp3/decoder.c -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libogg/CHANGELOG: -------------------------------------------------------------------------------- 1 | *** 20020517: 1.0.2 *** 2 | 3 | Playback bugfix to floor1; mode mistakenly used for sizing instead 4 | of blockflag 5 | 6 | *** 20020515: 1.0.1 *** 7 | 8 | Added complete API documentation to source tarball. No code 9 | changes. 10 | 11 | *** 20020412: 1.0.1 *** 12 | 13 | Fixed a clipping bug that affected ARM processors; negative 14 | overflows were being properly clipped, but then clobbered to 15 | positive by the positive overflow chec (asm_arm.h:CLIP_TO_15) 16 | 17 | *** 20020403: 1.0.0 *** 18 | 19 | Initial version -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libogg/TODO: -------------------------------------------------------------------------------- 1 | Add explicit 64 bit integer support rather than relying on compiler 2 | Roll in optional use of bounded heap memory manager 3 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/libogg/_lowmem-branch_Tremor: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/plug_gme.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef plug_gme_h 3 | #define plug_gme_h 4 | 5 | #define LIBGMETitle "Game_Music_Emu 0.5.2 by Blargg" 6 | 7 | #include "_const.h" 8 | 9 | extern bool PlugGME_Start(const char *pEXT,FAT_FILE *pFileHandle,int TrackNum); 10 | extern void PlugGME_Free(void); 11 | extern u32 PlugGME_Update(u32 *plrdst); 12 | 13 | extern s32 PlugGME_GetPosMax(void); 14 | extern s32 PlugGME_GetPosOffset(void); 15 | extern void PlugGME_SetPosOffset(s32 ofs); 16 | 17 | extern u32 PlugGME_GetSampleRate(void); 18 | extern u32 PlugGME_GetChannelCount(void); 19 | extern u32 PlugGME_GetSamplePerFrame(void); 20 | extern u32 PlugGME_GetPlayTimeSec(void); 21 | 22 | #include "unicode.h" 23 | 24 | extern int PlugGME_GetInfoIndexCount(void); 25 | extern bool PlugGME_GetInfoStrL(int idx,char *str,int len); 26 | extern bool PlugGME_GetInfoStrW(int idx,UnicodeChar *str,int len); 27 | extern bool PlugGME_GetInfoStrUTF8(int idx,char *str,int len); 28 | 29 | #endif 30 | 31 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/plug_lyric.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _LYRIC_h 3 | #define _LYRIC_h 4 | 5 | #include "fat2.h" 6 | 7 | #define LRCTitle "liblyric audio plugin by Carpfish" 8 | 9 | extern bool PlugLRC_Start(const char *pFileName); 10 | extern void PlugLRC_Free(void); 11 | 12 | extern bool PlugLRC_isOpened(void); 13 | 14 | extern void PlugLRC_SetOffset(s32 ofs); 15 | extern s32 PlugLRC_GetOffset(void); 16 | 17 | extern const char* PlugLRC_GetTitle(void); 18 | extern const char* PlugLRC_GetArtist(void); 19 | extern const char* PlugLRC_GetAlbum(void); 20 | extern const char* PlugLRC_GetAuthor(void); 21 | extern const char* PlugLRC_GetPrevLyric(void); 22 | extern const char* PlugLRC_GetCurLyric(int start_time); 23 | extern const char* PlugLRC_GetNextLyric(void); 24 | 25 | #define isblank(a) ((a) == ' ') 26 | #endif 27 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/plug_midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Sound/plug_midi.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/plug_midi.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef plug_midi_h 3 | #define plug_midi_h 4 | 5 | #include 6 | 7 | extern bool PlugMIDI_Start(FAT_FILE *pFileHandle); 8 | extern void PlugMIDI_Free(void); 9 | extern u32 PlugMIDI_Update(u32 *plrbuf); 10 | 11 | extern s32 PlugMIDI_GetPosMax(void); 12 | extern s32 PlugMIDI_GetPosOffset(void); 13 | extern void PlugMIDI_SetPosOffset(s32 ofs); 14 | extern u32 PlugMIDI_GetChannelCount(void); 15 | extern u32 PlugMIDI_GetSampleRate(void); 16 | extern u32 PlugMIDI_GetSamplePerFrame(void); 17 | extern u32 PlugMIDI_GetPlayTimeSec(void); 18 | 19 | extern int PlugMIDI_GetInfoIndexCount(void); 20 | extern bool PlugMIDI_GetInfoStrL(int idx,char *str,int len); 21 | extern bool PlugMIDI_GetInfoStrW(int idx,UnicodeChar *str,int len); 22 | extern bool PlugMIDI_GetInfoStrUTF8(int idx,char *str,int len); 23 | 24 | #endif 25 | 26 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/plug_mp3.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _MP3_h 3 | #define _MP3_h 4 | 5 | #include "fat2.h" 6 | 7 | #define MP3Title "libmad MP3 audio plugin" 8 | 9 | extern bool PlugMP3_Start(FAT_FILE *FileHandle); 10 | extern void PlugMP3_Free(void); 11 | extern u32 PlugMP3_Update(u32 *plrbuf); 12 | 13 | extern s32 PlugMP3_GetPosMax(void); 14 | extern s32 PlugMP3_GetPosOffset(void); 15 | extern void PlugMP3_SetPosOffset(s32 ofs); 16 | 17 | extern u32 PlugMP3_GetChannelCount(void); 18 | extern u32 PlugMP3_GetSampleRate(void); 19 | extern u32 PlugMP3_GetSamplePerFrame(void); 20 | extern u32 PlugMP3_GetPlayTimeSec(void); 21 | 22 | extern int PlugMP3_GetInfoIndexCount(void); 23 | extern bool PlugMP3_GetInfoStrL(int idx,char *str,int len); 24 | extern bool PlugMP3_GetInfoStrW(int idx,UnicodeChar *str,int len); 25 | extern bool PlugMP3_GetInfoStrUTF8(int idx,char *str,int len); 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/plug_ogg.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _OGG_h 3 | #define _OGG_h 4 | 5 | #include "fat2.h" 6 | 7 | #define OGGTitle "libogg Tremor 1.0 (c)2002 Xiph.org" 8 | 9 | extern bool PlugOGG_Start(FAT_FILE *FileHandle); 10 | extern u32 PlugOGG_Update(u32 *plrbuf); 11 | extern void PlugOGG_Free(void); 12 | 13 | extern s32 PlugOGG_GetPosMax(void); 14 | extern s32 PlugOGG_GetPosOffset(void); 15 | extern void PlugOGG_SetPosOffset(s32 ofs); 16 | 17 | extern u32 PlugOGG_GetChannelCount(void); 18 | extern u32 PlugOGG_GetSampleRate(void); 19 | extern u32 PlugOGG_GetSamplePerFrame(void); 20 | extern u32 PlugOGG_GetPlayTimeSec(void); 21 | 22 | extern int PlugOGG_GetInfoIndexCount(void); 23 | extern bool PlugOGG_GetInfoStrL(int idx,char *str,int len); 24 | extern bool PlugOGG_GetInfoStrW(int idx,UnicodeChar *str,int len); 25 | extern bool PlugOGG_GetInfoStrUTF8(int idx,char *str,int len); 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Sound/plug_wav.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _WAV_h 3 | #define _WAV_h 4 | 5 | #include "fat2.h" 6 | 7 | extern bool PlugWAVE_Start(FAT_FILE *FileHandle); 8 | extern void PlugWAVE_Free(void); 9 | extern u32 PlugWAVE_Update(u32 *plrbuf); 10 | 11 | extern s32 PlugWAVE_GetPosMax(void); 12 | extern s32 PlugWAVE_GetPosOffset(void); 13 | extern void PlugWAVE_SetPosOffset(s32 ofs); 14 | 15 | extern u32 PlugWAVE_GetChannelCount(void); 16 | extern u32 PlugWAVE_GetSampleRate(void); 17 | extern u32 PlugWAVE_GetSamplePerFrame(void); 18 | extern u32 PlugWAVE_GetPlayTimeSec(void); 19 | 20 | extern int PlugWAVE_GetInfoIndexCount(void); 21 | extern bool PlugWAVE_GetInfoStrL(int idx,char *str,int len); 22 | extern bool PlugWAVE_GetInfoStrW(int idx,UnicodeChar *str,int len); 23 | extern bool PlugWAVE_GetInfoStrUTF8(int idx,char *str,int len); 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Video/_dpgfs.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _DPGFS_H 3 | #define _DPGFS_H 4 | 5 | #include "fat2.h" 6 | 7 | extern void DPGFS_Init(FAT_FILE *pFileHandle); 8 | extern void DPGFS_Free(void); 9 | extern void DPGFS_Movie_SetAttribute(u32 _DataTopOffset,u32 _Size); 10 | extern void DPGFS_Audio_SetAttribute(u32 _DataTopOffset,u32 _Size); 11 | extern u32 DPGFS_Movie_GetSize(void); 12 | extern u32 DPGFS_Audio_GetSize(void); 13 | extern void DPGFS_Movie_SetOffset(u32 ofs); 14 | extern void DPGFS_Audio_SetOffset(u32 ofs); 15 | extern u32 DPGFS_Audio_GetOffset(void); 16 | extern u32 DPGFS_Movie_Read32bit(void *_pbuf,u32 size); 17 | extern u32 DPGFS_Audio_Read32bit(void *_pbuf,u32 size); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Video/libmpeg2/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Video/libmpeg2/alloc.c -------------------------------------------------------------------------------- /source/arm9/source/plugin/Video/libmpeg2/config.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef CONFIG_H 3 | #define CONFIG_H 4 | 5 | #include 6 | 7 | #define CODE_IN_ITCM_DPG __attribute__ ((section (".ITCM_libglobal_dpg"))) 8 | #undef DATA_IN_DTCM 9 | #define DATA_IN_MTCM_SET __attribute__ ((section (".mtcmset"))) 10 | #define DATA_IN_MTCM_SET_CONST __attribute__ ((section (".mtcmset.const"))) 11 | #define DATA_IN_MTCM_VAR __attribute__ ((section (".mtcmvar"))) 12 | 13 | #include "_console.h" 14 | #include "_consoleWriteLog.h" 15 | #include "_const.h" 16 | 17 | 18 | #endif /* CONFIG_H */ 19 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Video/libmpeg2/inttypes.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef inttypes_h 3 | #define inttypes_h 4 | 5 | #include 6 | 7 | typedef s8 int8_t; 8 | typedef s16 int16_t; 9 | typedef s32 int32_t; 10 | 11 | typedef u8 uint8_t; 12 | typedef u16 uint16_t; 13 | typedef u32 uint32_t; 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Video/plug_mp2.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _MP2_h 3 | #define _MP2_h 4 | 5 | #define MP2Title "MP2 decode from ARM7" 6 | 7 | #include "cstream.h" 8 | 9 | extern bool StartMP2(void); 10 | extern void FreeMP2(void); 11 | 12 | extern void MP2_SetPosition(double per,u64 smp); 13 | 14 | extern void MP2_LoadReadBuffer(void); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/Video/plug_srttitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/Video/plug_srttitle.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/Video/plug_srttitle.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _SRTTitle_h 3 | #define _SRTTitle_h 4 | 5 | #include "fat2.h" 6 | 7 | extern bool PlugSRT_Start(FAT_FILE *FileHandle); 8 | extern void PlugSRT_Free(void); 9 | 10 | extern bool PlugSRT_isOpened(void); 11 | 12 | extern void PlugSRT_SetOffset(u32 ofs); 13 | extern u32 PlugSRT_GetOffset(void); 14 | 15 | extern const char* PlugSRT_GetTitle(void); 16 | extern const char* PlugSRT_GetArtist(void); 17 | extern const char* PlugSRT_GetAlbum(void); 18 | extern const char* PlugSRT_GetAuthor(void); 19 | extern const char* PlugSRT_GetCurSRTTitle(int start_time); 20 | #endif 21 | -------------------------------------------------------------------------------- /source/arm9/source/plugin/plug_ndsrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/plugin/plug_ndsrom.cpp -------------------------------------------------------------------------------- /source/arm9/source/plugin/plug_ndsrom.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define NDSROMTitle "NDSROM bootloader ver0.5" 4 | 5 | extern void BootNDSROM(void); 6 | -------------------------------------------------------------------------------- /source/arm9/source/plugin_def.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef plugin_def_h 3 | #define plugin_def_h 4 | 5 | #include "fat2.h" 6 | #include "_console.h" 7 | #include "memtool.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_AudioPlay/proc_AP_SpeAna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_AudioPlay/proc_AP_SpeAna.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_AudioPlay/proc_AP_SpeAna_algo_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_AudioPlay/proc_AP_SpeAna_algo_fft.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_AudioPlay/proc_AudioPlay_Trigger_CallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_AudioPlay/proc_AudioPlay_Trigger_CallBack.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_DPGPlay/proc_DPGPlay_Popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_DPGPlay/proc_DPGPlay_Popup.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_DPGPlay/proc_DPGPlay_Trigger_CallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_DPGPlay/proc_DPGPlay_Trigger_CallBack.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/ThumbDPG.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef thumbdpg_h 3 | #define thumbdpg_h 4 | 5 | extern void InitDPGThumb(void); 6 | extern void FreeDPGThumb(void); 7 | extern void ReloadDPGThumb(const UnicodeChar *pCurrentPathUnicode,s32 fileidx); 8 | extern bool DrawDPGThumb(CglCanvas *pcan); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/ThumbIPK.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef ipk_h 3 | #define ipk_h 4 | 5 | extern void InitIPK(void); 6 | extern void FreeIPK(void); 7 | extern void ReloadIPK(const UnicodeChar *pCurrentPathUnicode,s32 fileidx); 8 | extern bool DrawIPK(CglCanvas *pcan); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/hiddenpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_FileList/hiddenpaths.cpp -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/hiddenpaths.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef hiddenpaths_h 3 | #define hiddenpaths_h 4 | 5 | extern void HiddenPaths_Init(void); 6 | extern void HiddenPaths_Free(void); 7 | extern bool HiddenPaths_isHidden(const UnicodeChar *pTargetPath); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/proc_FileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_FileList/proc_FileList.cpp -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/proc_FileList_CB_KeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_FileList/proc_FileList_CB_KeyPress.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/proc_FileList_DeleteFileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_FileList/proc_FileList_DeleteFileDialog.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/proc_FileList_FileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_FileList/proc_FileList_FileList.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/proc_FileList_Popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_FileList/proc_FileList_Popup.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_FileList/proc_FileList_Trigger_CallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_FileList/proc_FileList_Trigger_CallBack.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_ImageView/proc_ImageView_Popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_ImageView/proc_ImageView_Popup.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_ImageView/proc_ImageView_Trigger_CallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_ImageView/proc_ImageView_Trigger_CallBack.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_ImageView/proc_ImageView_mcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_ImageView/proc_ImageView_mcu.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_Memo/proc_MemoEdit_BMPWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_Memo/proc_MemoEdit_BMPWriter.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_TextView/cctf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_TextView/cctf.cpp -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_TextView/cctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_TextView/cctf.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_TextView/cctf_dfs.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef _cctf_dfs_h 3 | #define _cctf_dfs_h 4 | 5 | #include "fat2.h" 6 | 7 | extern void CTF_DFS_Init(FAT_FILE *FileHandle); 8 | extern void CTF_DFS_Free(void); 9 | extern void CTF_DFS_SetAttribute(u32 _DataTopOffset,u32 _Size); 10 | extern u32 CTF_DFS_GetSize(void); 11 | extern void CTF_DFS_SetOffset(u32 ofs); 12 | extern u32 CTF_DFS_Read32bit(void *_pbuf,u32 size); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_TextView/proc_TextView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_TextView/proc_TextView.cpp -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_TextView/proc_TextView_Popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_TextView/proc_TextView_Popup.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_TextView/proc_TextView_Trigger_CallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_TextView/proc_TextView_Trigger_CallBack.h -------------------------------------------------------------------------------- /source/arm9/source/procbody/proc_TextView/proc_TextView_extfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/procbody/proc_TextView/proc_TextView_extfont.h -------------------------------------------------------------------------------- /source/arm9/source/resource/_console_font_fixed6x6_packed_bin.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Moonlight. 2 | 3 | #ifndef _console_font_fixed6x6_packed_bin_h 4 | #define _console_font_fixed6x6_packed_bin_h 5 | 6 | #define _console_font_fixed6x6_packed_bin_Count (512) 7 | #define _console_font_fixed6x6_packed_bin_Size (2048) 8 | extern const unsigned int _console_font_fixed6x6_packed_bin[512]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/resource/bootwarn_b8zlib.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Carpfish.. 2 | 3 | #ifndef bootwarn_b8zlib_h 4 | #define bootwarn_b8zlib_h 5 | 6 | #define bootwarn_b8zlib_Count (5640) 7 | #define bootwarn_b8zlib_Size (5640) 8 | extern const unsigned char bootwarn_b8zlib[5640]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/resource/guidxcrcerror_b8zlib.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Carpfish.. 2 | 3 | #ifndef guidxcrcerror_b8zlib_h 4 | #define guidxcrcerror_b8zlib_h 5 | 6 | #define guidxcrcerror_b8zlib_Count (4900) 7 | #define guidxcrcerror_b8zlib_Size (4900) 8 | extern const unsigned char guidxcrcerror_b8zlib[4900]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/resource/romeo2_ncd.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Carpfish.. 2 | 3 | #ifndef romeo2_ncd_h 4 | #define romeo2_ncd_h 5 | 6 | #define romeo2_ncd_Count (169291) 7 | #define romeo2_ncd_Size (169291) 8 | extern const signed char romeo2_ncd[169291]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/resource/snd_click_long_c_bin.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Moonlight. 2 | 3 | #ifndef snd_click_long_c_bin_h 4 | #define snd_click_long_c_bin_h 5 | 6 | #define snd_click_long_c_bin_Count (2756) 7 | #define snd_click_long_c_bin_Size (2756) 8 | extern const signed char snd_click_long_c_bin[2756]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/resource/snd_click_short_c_bin.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Moonlight. 2 | 3 | #ifndef snd_click_short_c_bin_h 4 | #define snd_click_short_c_bin_h 5 | 6 | #define snd_click_short_c_bin_Count (386) 7 | #define snd_click_short_c_bin_Size (386) 8 | extern const signed char snd_click_short_c_bin[386]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/resource/versionerror_b8zlib.h: -------------------------------------------------------------------------------- 1 | // bin2c converter ver0.1 by Carpfish.. 2 | 3 | #ifndef versionerror_b8zlib_h 4 | #define versionerror_b8zlib_h 5 | 6 | #define versionerror_b8zlib_Count (4640) 7 | #define versionerror_b8zlib_Size (4640) 8 | extern const unsigned char versionerror_b8zlib[4640]; 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /source/arm9/source/vramcache.s: -------------------------------------------------------------------------------- 1 | @//--------------------------------------------------------------------------------- 2 | @ AREA globals,CODE,READONLY 3 | @//--------------------------------------------------------------------------------- 4 | .section .text 5 | .global VRAMWriteCache_Enable 6 | VRAMWriteCache_Enable: 7 | mov r0,#0x80 @// =0b00000111 8 | mcr p15, 0, r0, c3, c0, 0 9 | bx lr 10 | 11 | @//--------------------------------------------------------------------------------- 12 | 13 | .global VRAMWriteCache_Disable 14 | VRAMWriteCache_Disable: 15 | mov r0,#0x80 @// =0b00000110 16 | mcr p15, 0, r0, c3, c0, 0 17 | bx lr 18 | 19 | @END -------------------------------------------------------------------------------- /source/arm9/source/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/arm9/source/zlib/ChangeLog -------------------------------------------------------------------------------- /source/arm9/source/zlib/crc32_pass.cdummy: -------------------------------------------------------------------------------- 1 | 2 | #include "zutil.h" /* for STDC and FAR definitions */ 3 | 4 | #define local static 5 | 6 | unsigned long ZEXPORT crc32(crc, buf, len) 7 | unsigned long crc; 8 | const unsigned char FAR *buf; 9 | unsigned len; 10 | { 11 | return 0UL; 12 | } 13 | -------------------------------------------------------------------------------- /source/arm9/source/zlib/inffast.h: -------------------------------------------------------------------------------- 1 | /* inffast.h -- header to use inffast.c 2 | * Copyright (C) 1995-2003 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | /* WARNING: this file should *not* be used by applications. It is 7 | part of the implementation of the compression library and is 8 | subject to change. Applications should only use zlib.h. 9 | */ 10 | 11 | void inflate_fast OF((z_streamp strm, unsigned start)); 12 | -------------------------------------------------------------------------------- /source/fishell2.nds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/fishell2.nds -------------------------------------------------------------------------------- /source/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/source/icon.bmp -------------------------------------------------------------------------------- /tools/ovrcextract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/tools/ovrcextract -------------------------------------------------------------------------------- /tools/ovrcextract.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/tools/ovrcextract.exe -------------------------------------------------------------------------------- /tools/ovrctool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipwndev/fishshell2/ab048539ca849d86158cb97dfb30c9ffcaaac92d/tools/ovrctool.exe --------------------------------------------------------------------------------