├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── build-patches.yml │ └── check-code.yml ├── .gitignore ├── .gitmodules ├── BUILDING.md ├── CONTRIBUTING.md ├── README.md ├── configure.py ├── format.py ├── genhooks ├── gzi ├── hb_NAEE.gzi ├── hb_NAEJ.gzi └── mem_patch.gzi ├── lib ├── libpm-jp.a └── libpm-us.a ├── lua ├── make.lua ├── makerom.lua ├── makewad.lua └── rom_info.lua ├── makerom ├── makewad ├── requirements.txt ├── res ├── fp │ ├── anchor.png │ ├── arrow_icons.png │ ├── button_icons.png │ ├── check_icons.png │ ├── checkbox.png │ ├── control_stick.png │ ├── crosshair.png │ ├── file_icons.png │ ├── fipps.png │ ├── flag_icons.png │ ├── list_icons.png │ ├── macro_icons.png │ ├── move_icon.png │ ├── movie_icons.png │ ├── notalot35.png │ ├── origamimommy.png │ ├── osk_icons.png │ ├── pause_icons.png │ ├── pcsenior.png │ ├── pixelintv.png │ ├── pixelzim.png │ ├── pressstart2p.png │ ├── save_icons.png │ ├── smwtextnc.png │ ├── werdnasreturn.png │ └── wrench.png └── resources.json ├── romc.c ├── src ├── asm │ └── ldr.s ├── commands.c ├── commands.h ├── common.h ├── enums.h ├── fp.c ├── fp.h ├── fp │ ├── debug │ │ ├── flags.c │ │ ├── flags.h │ │ ├── fp_debug.c │ │ ├── mem.c │ │ └── mem.h │ ├── file │ │ ├── files.c │ │ ├── files.h │ │ └── fp_file.c │ ├── fp_about.c │ ├── fp_camera.c │ ├── fp_cheats.c │ ├── fp_settings.c │ ├── player │ │ ├── fp_player.c │ │ ├── items.c │ │ └── items.h │ ├── practice │ │ ├── fp_practice.c │ │ ├── timer.c │ │ ├── timer.h │ │ ├── trainer.c │ │ └── trainer.h │ └── warps │ │ ├── bosses.c │ │ ├── bosses.h │ │ ├── fp_warps.c │ │ ├── locations.c │ │ ├── locations.h │ │ └── warp_info.h ├── io │ ├── ed64_io.h │ ├── ed64_l.h │ ├── ed64_v1.c │ ├── ed64_v2.c │ ├── ed64_x.c │ ├── ed64_x.h │ ├── fat.c │ ├── fat.h │ ├── hb.h │ ├── hb_io.c │ ├── hb_io.h │ ├── io.c │ ├── io.h │ ├── iodev.h │ ├── pi.c │ ├── pi.h │ ├── sc64.c │ ├── sc64.h │ ├── sc64_io.h │ ├── sd.h │ ├── sd_host.c │ ├── sd_host.h │ ├── sys.c │ └── sys.h ├── macros.h ├── menu │ ├── menu.c │ ├── menu.h │ ├── menu_button.c │ ├── menu_checkbox.c │ ├── menu_cycle.c │ ├── menu_def.c │ ├── menu_floatinput.c │ ├── menu_intinput.c │ ├── menu_item_button.c │ ├── menu_item_button.h │ ├── menu_option.c │ ├── menu_positioning.c │ ├── menu_procs.c │ ├── menu_prompt.c │ ├── menu_strinput.c │ ├── menu_submenu.c │ ├── menu_switch.c │ ├── menu_userwatch.c │ └── menu_watch.c ├── pm64.h ├── sys │ ├── crash_screen.c │ ├── crash_screen.h │ ├── gfx.c │ ├── gfx.h │ ├── input.c │ ├── input.h │ ├── resource.c │ ├── resource.h │ ├── settings.c │ └── settings.h ├── types.h └── util │ ├── adex.c │ ├── adex.h │ ├── camera.c │ ├── geometry.c │ ├── geometry.h │ ├── gu.c │ ├── gu.h │ ├── osk.c │ ├── osk.h │ ├── printf.c │ ├── printf.h │ ├── util.h │ ├── watchlist.c │ └── watchlist.h └── watches ├── watches-jp.txt └── watches-us.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/build-patches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/.github/workflows/build-patches.yml -------------------------------------------------------------------------------- /.github/workflows/check-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/.github/workflows/check-code.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/README.md -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/configure.py -------------------------------------------------------------------------------- /format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/format.py -------------------------------------------------------------------------------- /genhooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/genhooks -------------------------------------------------------------------------------- /gzi/hb_NAEE.gzi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/gzi/hb_NAEE.gzi -------------------------------------------------------------------------------- /gzi/hb_NAEJ.gzi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/gzi/hb_NAEJ.gzi -------------------------------------------------------------------------------- /gzi/mem_patch.gzi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/gzi/mem_patch.gzi -------------------------------------------------------------------------------- /lib/libpm-jp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/lib/libpm-jp.a -------------------------------------------------------------------------------- /lib/libpm-us.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/lib/libpm-us.a -------------------------------------------------------------------------------- /lua/make.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/lua/make.lua -------------------------------------------------------------------------------- /lua/makerom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/lua/makerom.lua -------------------------------------------------------------------------------- /lua/makewad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/lua/makewad.lua -------------------------------------------------------------------------------- /lua/rom_info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/lua/rom_info.lua -------------------------------------------------------------------------------- /makerom: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gru lua/makerom.lua "$@" 4 | -------------------------------------------------------------------------------- /makewad: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gru lua/makewad.lua "$@" 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ninja-syntax==1.7.2 2 | -------------------------------------------------------------------------------- /res/fp/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/anchor.png -------------------------------------------------------------------------------- /res/fp/arrow_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/arrow_icons.png -------------------------------------------------------------------------------- /res/fp/button_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/button_icons.png -------------------------------------------------------------------------------- /res/fp/check_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/check_icons.png -------------------------------------------------------------------------------- /res/fp/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/checkbox.png -------------------------------------------------------------------------------- /res/fp/control_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/control_stick.png -------------------------------------------------------------------------------- /res/fp/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/crosshair.png -------------------------------------------------------------------------------- /res/fp/file_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/file_icons.png -------------------------------------------------------------------------------- /res/fp/fipps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/fipps.png -------------------------------------------------------------------------------- /res/fp/flag_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/flag_icons.png -------------------------------------------------------------------------------- /res/fp/list_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/list_icons.png -------------------------------------------------------------------------------- /res/fp/macro_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/macro_icons.png -------------------------------------------------------------------------------- /res/fp/move_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/move_icon.png -------------------------------------------------------------------------------- /res/fp/movie_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/movie_icons.png -------------------------------------------------------------------------------- /res/fp/notalot35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/notalot35.png -------------------------------------------------------------------------------- /res/fp/origamimommy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/origamimommy.png -------------------------------------------------------------------------------- /res/fp/osk_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/osk_icons.png -------------------------------------------------------------------------------- /res/fp/pause_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/pause_icons.png -------------------------------------------------------------------------------- /res/fp/pcsenior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/pcsenior.png -------------------------------------------------------------------------------- /res/fp/pixelintv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/pixelintv.png -------------------------------------------------------------------------------- /res/fp/pixelzim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/pixelzim.png -------------------------------------------------------------------------------- /res/fp/pressstart2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/pressstart2p.png -------------------------------------------------------------------------------- /res/fp/save_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/save_icons.png -------------------------------------------------------------------------------- /res/fp/smwtextnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/smwtextnc.png -------------------------------------------------------------------------------- /res/fp/werdnasreturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/werdnasreturn.png -------------------------------------------------------------------------------- /res/fp/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/fp/wrench.png -------------------------------------------------------------------------------- /res/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/res/resources.json -------------------------------------------------------------------------------- /romc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/romc.c -------------------------------------------------------------------------------- /src/asm/ldr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/asm/ldr.s -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/common.h -------------------------------------------------------------------------------- /src/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/enums.h -------------------------------------------------------------------------------- /src/fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp.c -------------------------------------------------------------------------------- /src/fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp.h -------------------------------------------------------------------------------- /src/fp/debug/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/debug/flags.c -------------------------------------------------------------------------------- /src/fp/debug/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/debug/flags.h -------------------------------------------------------------------------------- /src/fp/debug/fp_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/debug/fp_debug.c -------------------------------------------------------------------------------- /src/fp/debug/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/debug/mem.c -------------------------------------------------------------------------------- /src/fp/debug/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/debug/mem.h -------------------------------------------------------------------------------- /src/fp/file/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/file/files.c -------------------------------------------------------------------------------- /src/fp/file/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/file/files.h -------------------------------------------------------------------------------- /src/fp/file/fp_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/file/fp_file.c -------------------------------------------------------------------------------- /src/fp/fp_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/fp_about.c -------------------------------------------------------------------------------- /src/fp/fp_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/fp_camera.c -------------------------------------------------------------------------------- /src/fp/fp_cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/fp_cheats.c -------------------------------------------------------------------------------- /src/fp/fp_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/fp_settings.c -------------------------------------------------------------------------------- /src/fp/player/fp_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/player/fp_player.c -------------------------------------------------------------------------------- /src/fp/player/items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/player/items.c -------------------------------------------------------------------------------- /src/fp/player/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/player/items.h -------------------------------------------------------------------------------- /src/fp/practice/fp_practice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/practice/fp_practice.c -------------------------------------------------------------------------------- /src/fp/practice/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/practice/timer.c -------------------------------------------------------------------------------- /src/fp/practice/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/practice/timer.h -------------------------------------------------------------------------------- /src/fp/practice/trainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/practice/trainer.c -------------------------------------------------------------------------------- /src/fp/practice/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/practice/trainer.h -------------------------------------------------------------------------------- /src/fp/warps/bosses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/warps/bosses.c -------------------------------------------------------------------------------- /src/fp/warps/bosses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/warps/bosses.h -------------------------------------------------------------------------------- /src/fp/warps/fp_warps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/warps/fp_warps.c -------------------------------------------------------------------------------- /src/fp/warps/locations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/warps/locations.c -------------------------------------------------------------------------------- /src/fp/warps/locations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/warps/locations.h -------------------------------------------------------------------------------- /src/fp/warps/warp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/fp/warps/warp_info.h -------------------------------------------------------------------------------- /src/io/ed64_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/ed64_io.h -------------------------------------------------------------------------------- /src/io/ed64_l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/ed64_l.h -------------------------------------------------------------------------------- /src/io/ed64_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/ed64_v1.c -------------------------------------------------------------------------------- /src/io/ed64_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/ed64_v2.c -------------------------------------------------------------------------------- /src/io/ed64_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/ed64_x.c -------------------------------------------------------------------------------- /src/io/ed64_x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/ed64_x.h -------------------------------------------------------------------------------- /src/io/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/fat.c -------------------------------------------------------------------------------- /src/io/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/fat.h -------------------------------------------------------------------------------- /src/io/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/hb.h -------------------------------------------------------------------------------- /src/io/hb_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/hb_io.c -------------------------------------------------------------------------------- /src/io/hb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/hb_io.h -------------------------------------------------------------------------------- /src/io/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/io.c -------------------------------------------------------------------------------- /src/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/io.h -------------------------------------------------------------------------------- /src/io/iodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/iodev.h -------------------------------------------------------------------------------- /src/io/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/pi.c -------------------------------------------------------------------------------- /src/io/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/pi.h -------------------------------------------------------------------------------- /src/io/sc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sc64.c -------------------------------------------------------------------------------- /src/io/sc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sc64.h -------------------------------------------------------------------------------- /src/io/sc64_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sc64_io.h -------------------------------------------------------------------------------- /src/io/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sd.h -------------------------------------------------------------------------------- /src/io/sd_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sd_host.c -------------------------------------------------------------------------------- /src/io/sd_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sd_host.h -------------------------------------------------------------------------------- /src/io/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sys.c -------------------------------------------------------------------------------- /src/io/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/io/sys.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/menu/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu.c -------------------------------------------------------------------------------- /src/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu.h -------------------------------------------------------------------------------- /src/menu/menu_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_button.c -------------------------------------------------------------------------------- /src/menu/menu_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_checkbox.c -------------------------------------------------------------------------------- /src/menu/menu_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_cycle.c -------------------------------------------------------------------------------- /src/menu/menu_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_def.c -------------------------------------------------------------------------------- /src/menu/menu_floatinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_floatinput.c -------------------------------------------------------------------------------- /src/menu/menu_intinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_intinput.c -------------------------------------------------------------------------------- /src/menu/menu_item_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_item_button.c -------------------------------------------------------------------------------- /src/menu/menu_item_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_item_button.h -------------------------------------------------------------------------------- /src/menu/menu_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_option.c -------------------------------------------------------------------------------- /src/menu/menu_positioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_positioning.c -------------------------------------------------------------------------------- /src/menu/menu_procs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_procs.c -------------------------------------------------------------------------------- /src/menu/menu_prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_prompt.c -------------------------------------------------------------------------------- /src/menu/menu_strinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_strinput.c -------------------------------------------------------------------------------- /src/menu/menu_submenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_submenu.c -------------------------------------------------------------------------------- /src/menu/menu_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_switch.c -------------------------------------------------------------------------------- /src/menu/menu_userwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_userwatch.c -------------------------------------------------------------------------------- /src/menu/menu_watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/menu/menu_watch.c -------------------------------------------------------------------------------- /src/pm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/pm64.h -------------------------------------------------------------------------------- /src/sys/crash_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/crash_screen.c -------------------------------------------------------------------------------- /src/sys/crash_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/crash_screen.h -------------------------------------------------------------------------------- /src/sys/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/gfx.c -------------------------------------------------------------------------------- /src/sys/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/gfx.h -------------------------------------------------------------------------------- /src/sys/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/input.c -------------------------------------------------------------------------------- /src/sys/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/input.h -------------------------------------------------------------------------------- /src/sys/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/resource.c -------------------------------------------------------------------------------- /src/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/resource.h -------------------------------------------------------------------------------- /src/sys/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/settings.c -------------------------------------------------------------------------------- /src/sys/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/sys/settings.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/types.h -------------------------------------------------------------------------------- /src/util/adex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/adex.c -------------------------------------------------------------------------------- /src/util/adex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/adex.h -------------------------------------------------------------------------------- /src/util/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/camera.c -------------------------------------------------------------------------------- /src/util/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/geometry.c -------------------------------------------------------------------------------- /src/util/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/geometry.h -------------------------------------------------------------------------------- /src/util/gu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/gu.c -------------------------------------------------------------------------------- /src/util/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/gu.h -------------------------------------------------------------------------------- /src/util/osk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/osk.c -------------------------------------------------------------------------------- /src/util/osk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/osk.h -------------------------------------------------------------------------------- /src/util/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/printf.c -------------------------------------------------------------------------------- /src/util/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/printf.h -------------------------------------------------------------------------------- /src/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/util.h -------------------------------------------------------------------------------- /src/util/watchlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/watchlist.c -------------------------------------------------------------------------------- /src/util/watchlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/src/util/watchlist.h -------------------------------------------------------------------------------- /watches/watches-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/watches/watches-jp.txt -------------------------------------------------------------------------------- /watches/watches-us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JCog/fp/HEAD/watches/watches-us.txt --------------------------------------------------------------------------------