├── .github ├── CODEOWNERS ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── ICON0.PNG ├── LICENSE ├── README.md ├── data ├── bgimg.png ├── buk_scr.png ├── cat_about.png ├── cat_bup.png ├── cat_cheats.png ├── cat_db.png ├── cat_empty.png ├── cat_hdd.png ├── cat_opt.png ├── cat_sav.png ├── cat_usb.png ├── cat_warning.png ├── cheat.png ├── circle_loading_bg.png ├── circle_loading_seek.png ├── column_1.png ├── column_2.png ├── column_3.png ├── column_4.png ├── column_5.png ├── column_6.png ├── column_7.png ├── edit_shadow.png ├── fonts │ ├── NotoSansJP-Medium.otf │ └── OFL.txt ├── footer_ico_circle.png ├── footer_ico_cross.png ├── footer_ico_square.png ├── footer_ico_triangle.png ├── header_dot.png ├── header_line.png ├── help.png ├── inside.ahx ├── jar_about.png ├── jar_about_hover.png ├── jar_bup.png ├── jar_bup_hover.png ├── jar_db.png ├── jar_db_hover.png ├── jar_empty.png ├── jar_ftp.png ├── jar_ftp_hover.png ├── jar_hdd.png ├── jar_hdd_hover.png ├── jar_opt.png ├── jar_opt_hover.png ├── jar_usb.png ├── jar_usb_hover.png ├── langs │ ├── lang_es.po │ ├── lang_it.po │ ├── lang_ja.po │ └── lang_pt.po ├── leon.jpg ├── leon_luna.png ├── logo.png ├── logo_text.png ├── luna._png ├── luna.jpg ├── mark_arrow.png ├── mark_line.png ├── opt_off.png ├── opt_on.png ├── scroll_bg.png ├── scroll_lock.png ├── tag_apply.png ├── tag_lock.png ├── tag_net.png ├── tag_own.png ├── tag_pce.png ├── tag_ps1.png ├── tag_ps2.png ├── tag_psp.png ├── tag_transfer.png ├── tag_vmc.png ├── tag_warning.png ├── tag_zip.png ├── trp_gold.png └── trp_sync.png ├── docs ├── README.md ├── _config.yml ├── screenshots │ ├── screenshot-codes.png │ ├── screenshot-main.png │ ├── screenshot-patch.png │ └── screenshot-saves.png └── translate.po ├── include ├── ahx.h ├── ciso.h ├── common.h ├── font-6x10.h ├── font_adonais.h ├── icon0.h ├── kirk_engine.h ├── libfont.h ├── menu.h ├── menu_gui.h ├── plugin.h ├── ps1card.h ├── psppad.h ├── saves.h ├── settings.h ├── sfo.h ├── shiftjis.h ├── svpng.h ├── ttf_render.h ├── types.h └── utils.h └── source ├── ahx.c ├── ciso.c ├── common.c ├── dialog.c ├── draw.c ├── exec_cmd.c ├── http.c ├── kirk_engine.c ├── libfont.c ├── main.c ├── menu_about.c ├── menu_cheats.c ├── menu_hex.c ├── menu_main.c ├── menu_options.c ├── parsedreg.c ├── ps1card.c ├── psp_decrypter.c ├── psppad.c ├── saves.c ├── settings.c ├── sfo.c ├── ttf_fonts.c ├── util.c ├── vmp_resign.c └── zip_util.c /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/ICON0.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/README.md -------------------------------------------------------------------------------- /data/bgimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/bgimg.png -------------------------------------------------------------------------------- /data/buk_scr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/buk_scr.png -------------------------------------------------------------------------------- /data/cat_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_about.png -------------------------------------------------------------------------------- /data/cat_bup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_bup.png -------------------------------------------------------------------------------- /data/cat_cheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_cheats.png -------------------------------------------------------------------------------- /data/cat_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_db.png -------------------------------------------------------------------------------- /data/cat_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_empty.png -------------------------------------------------------------------------------- /data/cat_hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_hdd.png -------------------------------------------------------------------------------- /data/cat_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_opt.png -------------------------------------------------------------------------------- /data/cat_sav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_sav.png -------------------------------------------------------------------------------- /data/cat_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_usb.png -------------------------------------------------------------------------------- /data/cat_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cat_warning.png -------------------------------------------------------------------------------- /data/cheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/cheat.png -------------------------------------------------------------------------------- /data/circle_loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/circle_loading_bg.png -------------------------------------------------------------------------------- /data/circle_loading_seek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/circle_loading_seek.png -------------------------------------------------------------------------------- /data/column_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/column_1.png -------------------------------------------------------------------------------- /data/column_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/column_2.png -------------------------------------------------------------------------------- /data/column_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/column_3.png -------------------------------------------------------------------------------- /data/column_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/column_4.png -------------------------------------------------------------------------------- /data/column_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/column_5.png -------------------------------------------------------------------------------- /data/column_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/column_6.png -------------------------------------------------------------------------------- /data/column_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/column_7.png -------------------------------------------------------------------------------- /data/edit_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/edit_shadow.png -------------------------------------------------------------------------------- /data/fonts/NotoSansJP-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/fonts/NotoSansJP-Medium.otf -------------------------------------------------------------------------------- /data/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/fonts/OFL.txt -------------------------------------------------------------------------------- /data/footer_ico_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/footer_ico_circle.png -------------------------------------------------------------------------------- /data/footer_ico_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/footer_ico_cross.png -------------------------------------------------------------------------------- /data/footer_ico_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/footer_ico_square.png -------------------------------------------------------------------------------- /data/footer_ico_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/footer_ico_triangle.png -------------------------------------------------------------------------------- /data/header_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/header_dot.png -------------------------------------------------------------------------------- /data/header_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/header_line.png -------------------------------------------------------------------------------- /data/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/help.png -------------------------------------------------------------------------------- /data/inside.ahx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/inside.ahx -------------------------------------------------------------------------------- /data/jar_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_about.png -------------------------------------------------------------------------------- /data/jar_about_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_about_hover.png -------------------------------------------------------------------------------- /data/jar_bup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_bup.png -------------------------------------------------------------------------------- /data/jar_bup_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_bup_hover.png -------------------------------------------------------------------------------- /data/jar_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_db.png -------------------------------------------------------------------------------- /data/jar_db_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_db_hover.png -------------------------------------------------------------------------------- /data/jar_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_empty.png -------------------------------------------------------------------------------- /data/jar_ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_ftp.png -------------------------------------------------------------------------------- /data/jar_ftp_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_ftp_hover.png -------------------------------------------------------------------------------- /data/jar_hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_hdd.png -------------------------------------------------------------------------------- /data/jar_hdd_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_hdd_hover.png -------------------------------------------------------------------------------- /data/jar_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_opt.png -------------------------------------------------------------------------------- /data/jar_opt_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_opt_hover.png -------------------------------------------------------------------------------- /data/jar_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_usb.png -------------------------------------------------------------------------------- /data/jar_usb_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/jar_usb_hover.png -------------------------------------------------------------------------------- /data/langs/lang_es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/langs/lang_es.po -------------------------------------------------------------------------------- /data/langs/lang_it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/langs/lang_it.po -------------------------------------------------------------------------------- /data/langs/lang_ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/langs/lang_ja.po -------------------------------------------------------------------------------- /data/langs/lang_pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/langs/lang_pt.po -------------------------------------------------------------------------------- /data/leon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/leon.jpg -------------------------------------------------------------------------------- /data/leon_luna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/leon_luna.png -------------------------------------------------------------------------------- /data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/logo.png -------------------------------------------------------------------------------- /data/logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/logo_text.png -------------------------------------------------------------------------------- /data/luna._png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/luna._png -------------------------------------------------------------------------------- /data/luna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/luna.jpg -------------------------------------------------------------------------------- /data/mark_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/mark_arrow.png -------------------------------------------------------------------------------- /data/mark_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/mark_line.png -------------------------------------------------------------------------------- /data/opt_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/opt_off.png -------------------------------------------------------------------------------- /data/opt_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/opt_on.png -------------------------------------------------------------------------------- /data/scroll_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/scroll_bg.png -------------------------------------------------------------------------------- /data/scroll_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/scroll_lock.png -------------------------------------------------------------------------------- /data/tag_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_apply.png -------------------------------------------------------------------------------- /data/tag_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_lock.png -------------------------------------------------------------------------------- /data/tag_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_net.png -------------------------------------------------------------------------------- /data/tag_own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_own.png -------------------------------------------------------------------------------- /data/tag_pce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_pce.png -------------------------------------------------------------------------------- /data/tag_ps1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_ps1.png -------------------------------------------------------------------------------- /data/tag_ps2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_ps2.png -------------------------------------------------------------------------------- /data/tag_psp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_psp.png -------------------------------------------------------------------------------- /data/tag_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_transfer.png -------------------------------------------------------------------------------- /data/tag_vmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_vmc.png -------------------------------------------------------------------------------- /data/tag_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_warning.png -------------------------------------------------------------------------------- /data/tag_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/tag_zip.png -------------------------------------------------------------------------------- /data/trp_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/trp_gold.png -------------------------------------------------------------------------------- /data/trp_sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/data/trp_sync.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/screenshots/screenshot-codes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/docs/screenshots/screenshot-codes.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/docs/screenshots/screenshot-main.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/docs/screenshots/screenshot-patch.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot-saves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/docs/screenshots/screenshot-saves.png -------------------------------------------------------------------------------- /docs/translate.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/docs/translate.po -------------------------------------------------------------------------------- /include/ahx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/ahx.h -------------------------------------------------------------------------------- /include/ciso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/ciso.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/common.h -------------------------------------------------------------------------------- /include/font-6x10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/font-6x10.h -------------------------------------------------------------------------------- /include/font_adonais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/font_adonais.h -------------------------------------------------------------------------------- /include/icon0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/icon0.h -------------------------------------------------------------------------------- /include/kirk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/kirk_engine.h -------------------------------------------------------------------------------- /include/libfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/libfont.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/menu_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/menu_gui.h -------------------------------------------------------------------------------- /include/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/plugin.h -------------------------------------------------------------------------------- /include/ps1card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/ps1card.h -------------------------------------------------------------------------------- /include/psppad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/psppad.h -------------------------------------------------------------------------------- /include/saves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/saves.h -------------------------------------------------------------------------------- /include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/settings.h -------------------------------------------------------------------------------- /include/sfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/sfo.h -------------------------------------------------------------------------------- /include/shiftjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/shiftjis.h -------------------------------------------------------------------------------- /include/svpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/svpng.h -------------------------------------------------------------------------------- /include/ttf_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/ttf_render.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/types.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/include/utils.h -------------------------------------------------------------------------------- /source/ahx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/ahx.c -------------------------------------------------------------------------------- /source/ciso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/ciso.c -------------------------------------------------------------------------------- /source/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/common.c -------------------------------------------------------------------------------- /source/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/dialog.c -------------------------------------------------------------------------------- /source/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/draw.c -------------------------------------------------------------------------------- /source/exec_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/exec_cmd.c -------------------------------------------------------------------------------- /source/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/http.c -------------------------------------------------------------------------------- /source/kirk_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/kirk_engine.c -------------------------------------------------------------------------------- /source/libfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/libfont.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/main.c -------------------------------------------------------------------------------- /source/menu_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/menu_about.c -------------------------------------------------------------------------------- /source/menu_cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/menu_cheats.c -------------------------------------------------------------------------------- /source/menu_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/menu_hex.c -------------------------------------------------------------------------------- /source/menu_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/menu_main.c -------------------------------------------------------------------------------- /source/menu_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/menu_options.c -------------------------------------------------------------------------------- /source/parsedreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/parsedreg.c -------------------------------------------------------------------------------- /source/ps1card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/ps1card.c -------------------------------------------------------------------------------- /source/psp_decrypter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/psp_decrypter.c -------------------------------------------------------------------------------- /source/psppad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/psppad.c -------------------------------------------------------------------------------- /source/saves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/saves.c -------------------------------------------------------------------------------- /source/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/settings.c -------------------------------------------------------------------------------- /source/sfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/sfo.c -------------------------------------------------------------------------------- /source/ttf_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/ttf_fonts.c -------------------------------------------------------------------------------- /source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/util.c -------------------------------------------------------------------------------- /source/vmp_resign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/vmp_resign.c -------------------------------------------------------------------------------- /source/zip_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-psp/HEAD/source/zip_util.c --------------------------------------------------------------------------------