├── .gitignore ├── README.md ├── action_replay_codes ├── ASMC-4F664FC5 (China v1.0 (iQue)) [with Nub stick, ZL and ZR].txt ├── ASMC-4F664FC5 (China v1.0 (iQue)).txt ├── ASME-AEA63749 (USA v1.0) [with Nub stick, ZL and ZR].txt ├── ASME-AEA63749 (USA v1.0).txt ├── ASME-F486F859 (USA v1.1) [with Nub stick, ZL and ZR].txt ├── ASME-F486F859 (USA v1.1).txt ├── ASMJ-D2BBD1E6 (Japan v1.1) [with Nub stick, ZL and ZR].txt ├── ASMJ-D2BBD1E6 (Japan v1.1).txt ├── ASMJ-D2F380B2 (Japan v1.0) [with Nub stick, ZL and ZR].txt ├── ASMJ-D2F380B2 (Japan v1.0).txt ├── ASMK-3C73EADE (Korea v1.0) [with Nub stick, ZL and ZR].txt ├── ASMK-3C73EADE (Korea v1.0).txt ├── ASMP-D3D9F14A (Europe v1.0) [with Nub stick, ZL and ZR].txt ├── ASMP-D3D9F14A (Europe v1.0).txt └── usrcheat.dat ├── arm7_rtcom_patch ├── .clang-format ├── .clangd ├── Makefile ├── arm11_ucode │ ├── Makefile │ ├── a11ucode.ld │ ├── arm11_twlbg_patch │ │ ├── arm11_twlbg_patch.s │ │ ├── twl_bg_patch_bytes.no_nub.h │ │ └── twl_bg_patch_bytes.with_nub.h │ └── source │ │ ├── a11ucode.h │ │ ├── main.cpp │ │ ├── main_stuff.cpp │ │ ├── main_stuff.h │ │ └── ucode_entry.s ├── arm7 │ ├── Makefile │ └── source │ │ ├── main.cpp │ │ ├── rtcom.cpp │ │ └── rtcom.h └── arm9 │ ├── Makefile │ └── source │ └── main.cpp ├── arm9_controls_hook.s ├── generate_patch.py └── patches_for_other_games ├── animal_crossing ├── action_replay_codes │ ├── ADME-6C56B746 (USA v1.1).txt │ ├── ADME-8F7851CB (USA v1.0).txt │ ├── ADMJ-42DE9026 (Japan v1.1).txt │ ├── ADMJ-99A83574 (Japan v1.0).txt │ ├── ADMP-53DBB069 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── avalon_code ├── action_replay_codes │ ├── YOGE-53AC1A52 (USA v1.0).txt │ ├── YOGJ-A176530A (Japan v1.0).txt │ ├── YOGP-55AC6679 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── call_of_duty_black_ops ├── action_replay_codes │ ├── BDYD-0EA39166 (Germany v1.0).txt │ ├── BDYE-DB518CE8 (USA v1.0).txt │ ├── BDYF-AC733DEC (France v1.0).txt │ ├── BDYP-BC372203 (United Kingdom v1.0).txt │ ├── BDYX-7F37D348 (Canada v1.0).txt │ ├── BDYY-0C8EB6A9 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── call_of_duty_modern_warfare_3 ├── action_replay_codes │ ├── B5BD-E35C417D (Germany v1.0).txt │ ├── B5BE-E210C974 (USA v1.0).txt │ ├── B5BF-EA9A9990 (France v1.0).txt │ ├── B5BL-63A4584B (Canada (Fr) v1.0).txt │ ├── B5BP-06F2CFBE (United Kingdom v1.0).txt │ ├── B5BX-501269AE (Europe (Es,It) v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── call_of_duty_world_at_war ├── action_replay_codes │ ├── CALE-5E362D9A (USA v1.0).txt │ ├── CALK-382B089B (Korea v1.0).txt │ ├── CALP-72EF25EE (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── chibi_robo_clean_sweep ├── action_replay_codes │ ├── B62J-500194AF (Japan v1.0 (English Fan Translation, same cheatcode)).txt │ ├── B62J-813F1483 (Japan v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── chibi_robo_park_patrol ├── action_replay_codes │ ├── AJBE-F4DA8487 (USA v1.0).txt │ ├── AJBJ-C3850E69 (Japan v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── cop_recruit ├── action_replay_codes │ ├── BDUE-E1E6F9A5 (USA v1.0) [with CStick support].txt │ ├── BDUE-E1E6F9A5 (USA v1.0).txt │ ├── BDUP-F369D0AD (Europe v1.0) [with CStick support].txt │ ├── BDUP-F369D0AD (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── crash_of_the_titans ├── action_replay_codes │ ├── AQJE-0D2F3342 (USA v1.0).txt │ ├── AQJP-65159598 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── dementium ├── action_replay_codes │ ├── YDTE-8D709AEA (USA v1.0).txt │ ├── YDTJ-AFA783E4 (Japan v1.0).txt │ ├── YDTP-43C69E7E (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── dementium_2 ├── action_replay_codes │ ├── BDEE-ADCCFC30 (USA v1.0).txt │ ├── BDEP-BE559243 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── dragon_ball_origins ├── action_replay_codes │ ├── CDZE-27406AD7 (USA v1.0).txt │ ├── CDZP-11F2C3BB (Europe v1.0).txt │ ├── CG7J-17C19303 (Japan v1.0).txt │ ├── CG7K-96E2A5E7 (Korea v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── dragon_ball_origins_2 ├── action_replay_codes │ ├── BDBE-60E207F3 (USA v1.0).txt │ ├── BDBJ-33444081 (Japan v1.0).txt │ ├── BDBP-6A91AAAB (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── dragon_quest_ix ├── action_replay_codes │ ├── YDQE-23A95403 (USA v1.0).txt │ ├── YDQJ-08CF0EAF (Japan v1.0).txt │ ├── YDQP-AE7BD3F6 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── dragon_quest_monsters_joker ├── action_replay_codes │ ├── AJRE-5EEB7B5B (USA v1.0) [with CStick support].txt │ ├── AJRE-5EEB7B5B (USA v1.0).txt │ ├── AJRP-A37FF7D0 (Europe v1.0) [with CStick support].txt │ ├── AJRP-A37FF7D0 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── dragon_quest_monsters_joker_2 ├── action_replay_codes │ ├── CJRE-A56B15E2 (USA v1.0) [with CStick support].txt │ ├── CJRE-A56B15E2 (USA v1.0).txt │ ├── CJRJ-D7D749D5 (Japan v1.0) [with CStick support].txt │ ├── CJRJ-D7D749D5 (Japan v1.0).txt │ ├── CJRP-2E608754 (Europe v1.0) [with CStick support].txt │ ├── CJRP-2E608754 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── fighting_fantasy_the_warlock_of_firetop_mountain ├── action_replay_codes │ ├── BFGE-921F9970 (USA v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── final_fantasy_3 ├── action_replay_codes │ ├── AFFE-7A99FB3C (USA v1.0).txt │ ├── AFFJ-21E3EA0A (Japan v1.0).txt │ ├── AFFP-AC31DBEB (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ ├── assemble_twlbg_patch.py │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── final_fantasy_4 ├── action_replay_codes │ ├── YF4E-99358F97 (USA v1.0).txt │ ├── YF4J-0F0EE2E8 (Japan v1.0).txt │ ├── YF4P-D9213F85 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ ├── assemble_twlbg_patch.py │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── final_fantasy_crystal_chronicles_echoes_of_time ├── action_replay_codes │ ├── CFIE-83675145 (USA v1.0).txt │ ├── CFIJ-F0AB5928 (Japan v1.0).txt │ ├── CFIP-BDF2859F (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── final_fantasy_crystal_chronicles_ring_of_fates ├── action_replay_codes │ ├── AFXE-C0196935 (USA v1.0).txt │ ├── AFXJ-64BF896F (Japan v1.0).txt │ ├── AFXP-351C19A3 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── flower_sun_and_rain ├── action_replay_codes │ ├── YHNE-E74C30B9 (USA v1.0).txt │ ├── YHNP-C8B7827F (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── geometry_wars_galaxies ├── action_replay_codes │ ├── YGLE-142C9F7B (USA v1.0).txt │ ├── YGLP-A0F2225A (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── golden_sun_dark_dawn ├── action_replay_codes │ ├── BO5E-95430ABF (USA v1.0).txt │ ├── BO5J-A3D9E4AA (Japan v1.0).txt │ ├── BO5P-3B25DC21 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── goldeneye_007 ├── action_replay_codes │ ├── BJCD-51F0FAA9 (Germany v1.0).txt │ ├── BJCE-E3D9F896 (USA v1.0).txt │ ├── BJCF-598D1515 (France v1.0).txt │ ├── BJCI-D045489C (Italy v1.0).txt │ ├── BJCP-B307FB57 (United Kingdom v1.0).txt │ ├── BJCS-9A6F30AD (Spain v1.0).txt │ ├── BJCZ-6BB700D7 (Canada v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── goldeneye_rogue_agent ├── action_replay_codes │ ├── AGEE-0D78A8DA (USA v1.0).txt │ ├── AGEF-27327DF3 (France v1.0).txt │ ├── AGEJ-5C8B2B59 (Japan v1.0).txt │ ├── AGEP-245ECBF4 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── gta ├── action_replay_codes │ ├── YGXE-DEE4AA12 (USA v1.0).txt │ ├── YGXJ-2D3EC547 (Japan v1.0).txt │ ├── YGXP-40BF4673 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── harvest_moon_ds_island_of_happiness ├── action_replay_codes │ ├── ABJE-5A78B099 (USA v1.0).txt │ ├── ABJJ-3B17CBEF (Japan v1.0).txt │ ├── ABJP-11EAB31C (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── harvest_moon_ds_sunshine_islands ├── action_replay_codes │ ├── YB3E-AEFCB055 (USA v1.0).txt │ ├── YB3J-05DB8B5E (Japan v1.0).txt │ ├── YB3P-8E8BAC0B (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── inazuma_eleven ├── action_replay_codes │ ├── YEED-DA644BD8 (Germany v1.0).txt │ ├── YEEF-2B95659A (France v1.0).txt │ ├── YEEI-9EEF7A1E (Italy v1.0).txt │ ├── YEEJ-5B7D6955 (Japan v1.1).txt │ ├── YEEJ-92B8C779 (Japan v1.0).txt │ ├── YEEP-340A6BA9 (Europe v1.0).txt │ ├── YEES-05266003 (Spain v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── inazuma_eleven_2 ├── action_replay_codes │ ├── BEBD-45B02CC4 (Eissturm, Germany v1.0).txt │ ├── BEBF-AAB8EF1A (Tempete de Glace, France v1.0).txt │ ├── BEBI-063873F4 (Bufera di Neve, Italy v1.0).txt │ ├── BEBJ-10090AB0 (Kyoui no Shinryakusha - Blizzard, Japan v1.1).txt │ ├── BEBJ-E2D47023 (Kyoui no Shinryakusha - Blizzard, Japan v1.0).txt │ ├── BEBP-E653FBE6 (Blizzard, Europe v1.0).txt │ ├── BEBS-F22A7C91 (Ventisca Eterna, Spain v1.0).txt │ ├── BEED-22E2CDFA (Feuersturm, Germany v1.0).txt │ ├── BEEF-00BA0675 (Tempete de Feu, France v1.0).txt │ ├── BEEI-B2F755C4 (Tempesta di Fuoco, Italy v1.0).txt │ ├── BEEJ-C4F12B43 (Kyoui no Shinryakusha - Fire, Japan v1.0).txt │ ├── BEEJ-F62613D1 (Kyoui no Shinryakusha - Fire, Japan v1.1).txt │ ├── BEEP-2972B963 (Firestorm, Europe v1.0).txt │ ├── BEES-1289D16C (Tormenta de Fuego, Spain v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── inazuma_eleven_3 ├── action_replay_codes │ ├── BE8J-1D942891 (Spark, Japan v1.0).txt │ ├── BEZJ-5F26F8C3 (Bomber, Japan v1.0).txt │ ├── BOEJ-B91A0A8F (Ogre, Japan v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── kingdom_hearts_358_2_days ├── action_replay_codes │ ├── YKGE-826DCE31 (USA v1.0) [with CStick support].txt │ ├── YKGE-826DCE31 (USA v1.0).txt │ ├── YKGJ-7F96A5B7 (Japan v1.0) [with CStick support].txt │ ├── YKGJ-7F96A5B7 (Japan v1.0).txt │ ├── YKGJ-935551F1 (Japan v1.1) [with CStick support].txt │ ├── YKGJ-935551F1 (Japan v1.1).txt │ ├── YKGP-B54EA877 (Europe v1.0) [with CStick support].txt │ ├── YKGP-B54EA877 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── kingdom_hearts_recoded ├── action_replay_codes │ ├── BK9E-B2D419DE (USA v1.0) [with CStick support].txt │ ├── BK9E-B2D419DE (USA v1.0).txt │ ├── BK9J-34A21EC0 (Japan v1.0) [with CStick support].txt │ ├── BK9J-34A21EC0 (Japan v1.0).txt │ ├── BK9P-5060245E (Europe v1.0) [with CStick support].txt │ ├── BK9P-5060245E (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lego_batman ├── action_replay_codes │ ├── YJBE-BF1B2F19 (USA v1.0).txt │ ├── YJBJ-F3B6CC7E (Japan v1.0).txt │ ├── YJBP-02C7401B (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lego_harry_potter_years_1-4 ├── action_replay_codes │ ├── BLHE-36AB8FCA (USA v1.0).txt │ ├── BLHP-058619EE (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lego_indiana_jones ├── action_replay_codes │ ├── YLJE-35F3C2C5 (USA v1.0).txt │ ├── YLJP-09396D59 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lego_indiana_jones_2 ├── action_replay_codes │ ├── BLJE-90AC4519 (USA v1.0).txt │ ├── BLJP-E6BA8FE5 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lego_star_wars ├── action_replay_codes │ ├── YLGE-A001698A (USA v1.0).txt │ ├── YLGP-8A51C7FA (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lost_in_blue ├── action_replay_codes │ ├── ASKE-33485A73 (USA v1.0).txt │ ├── ASKJ-C25F13D6 (Japan v1.0).txt │ ├── ASKP-B17CF315 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lost_in_blue_2 ├── action_replay_codes │ ├── AL2E-DA0C7F5C (USA v1.0).txt │ ├── AL2J-9A03D3F7 (Japan v1.0).txt │ ├── AL2J-DCEA16C6 (Japan v1.1).txt │ ├── AL2P-FA545442 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── lost_in_blue_3 ├── action_replay_codes │ ├── YL3E-35590DB5 (USA v1.0).txt │ ├── YL3J-70924DF7 (Japan v1.1).txt │ ├── YL3J-C3FD688F (Japan v1.0).txt │ ├── YL3P-F064CA6C (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── magicians_quest ├── action_replay_codes │ ├── YNNE-B7C575AD (USA v1.0).txt │ ├── YNNJ-0523EF7A (Japan v1.0).txt │ ├── YNNJ-B4F8266C (Japan v1.1).txt │ ├── YNNP-86C62016 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── metroid ├── action_replay_codes │ ├── AMHE-187B29B5 (USA v1.1).txt │ ├── AMHE-E18D1857 (USA v1.0).txt │ ├── AMHJ-19A99F02 (Japan v1.1).txt │ ├── AMHJ-C3451356 (Japan v1.0).txt │ ├── AMHP-50A7BAC1 (Europe v1.0).txt │ ├── AMHP-E67BB94B (Europe v1.1).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── mini_ninjas ├── action_replay_codes │ ├── YNJE-35759484 (USA v1.0).txt │ ├── YNJP-CC220989 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── moon ├── action_replay_codes │ ├── COOE-EE10F30B (USA v1.0).txt │ ├── COOP-0A995E91 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── ni_no_kuni ├── action_replay_codes │ ├── B2KJ-424A3F2A (Japan v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── nostalgia ├── action_replay_codes │ ├── CJKE-E743CCCE (USA v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── okamiden ├── action_replay_codes │ ├── BOOE-8B046938 (USA v1.0).txt │ ├── BOOJ-36CAB1F1 (Japan v1.0).txt │ ├── BOOP-FCF7B95E (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── pac-man_world_3 ├── action_replay_codes │ ├── APWE-6124F30C (USA v1.0).txt │ ├── APWP-CD5CACD1 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── phantasy_star_zero ├── action_replay_codes │ ├── C24E-0AFFC6C3 (USA v1.0) [with CStick support].txt │ ├── C24E-0AFFC6C3 (USA v1.0).txt │ ├── C24J-5373CB26 (Japan v1.0) [with CStick support].txt │ ├── C24J-5373CB26 (Japan v1.0).txt │ ├── C24P-B1DFFC86 (Europe v1.0) [with CStick support].txt │ ├── C24P-B1DFFC86 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── rayman_ds ├── action_replay_codes │ ├── ARYE-200C3978 (USA v1.0).txt │ ├── ARYP-566082C5 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ ├── assemble_twlbg_patch.py │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── ridge_racer_ds ├── action_replay_codes │ ├── ARRE-590D06E0 (USA v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── rune_factory ├── action_replay_codes │ ├── ARFE-57C35D6D (USA v1.0).txt │ ├── ARFJ-588F9DF0 (Japan v1.0).txt │ ├── ARFP-24CE355E (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── rune_factory_2 ├── action_replay_codes │ ├── A6NE-4B1C80A4 (USA v1.0).txt │ ├── A6NJ-56B65880 (Japan v1.1).txt │ ├── A6NJ-63DD3B2A (Japan v1.0).txt │ ├── A6NP-C1FEEE1E (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── rune_factory_3 ├── action_replay_codes │ ├── BRFE-651FEEC3 (USA v1.0).txt │ ├── BRFJ-E4EE046A (Japan v1.0).txt │ ├── BRFP-394F533B (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── solatorobo ├── action_replay_codes │ ├── VCDE-3C1E9F64 (USA v1.0).txt │ ├── VCDJ-7A2EF8AD (Japan v1.0).txt │ ├── VCDV-471E19DD (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── soma_bringer ├── action_replay_codes │ ├── YBSJ-630D3B6C (Japan v1.0).txt │ ├── YBSJ-90E5633A (Japan v1.0 (English Translation)).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── sonic_chronicles ├── action_replay_codes │ ├── C5RJ-6CF4F788 (Japan v1.0).txt │ ├── CSNP-0742A221 (Europe v1.0).txt │ ├── YWSE-ACB0DF12 (USA v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── star_fox ├── action_replay_codes │ ├── ASFE-F22E6A7D (USA v1.0).txt │ ├── ASFJ-70977801 (Japan v1.0).txt │ ├── ASFP-F0E8BD5C (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── star_wars_lethal_alliance ├── action_replay_codes │ ├── AWUE-BB6B3A9A (USA v1.0).txt │ ├── AWUP-6786263A (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── super_monkey_ball_touch_and_roll ├── action_replay_codes │ ├── AMOE-24755900 (USA v1.0).txt │ ├── AMOJ-51F70EDB (Japan v1.0).txt │ ├── AMOP-C2C6149B (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── tak_the_great_juju_challenge ├── action_replay_codes │ ├── A3TE-B5B0E80B (USA v1.0) [with CStick support].txt │ ├── A3TE-B5B0E80B (USA v1.0).txt │ ├── A3TX-EBFE66A3 (Europe v1.0) [with CStick support].txt │ ├── A3TX-EBFE66A3 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── tony_hawk_motion ├── action_replay_codes │ ├── CTWE-88B86E61 (USA v1.0).txt │ ├── CTWP-51C5963F (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ ├── rtcom_commands.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── transformers_decepticons ├── action_replay_codes │ ├── AFYD-C34A5CB1 (Germany v1.0).txt │ ├── AFYE-4F365A44 (USA v1.1).txt │ ├── AFYE-86F6202B (USA v1.0).txt │ ├── AFYF-F7DF31F9 (France v1.0).txt │ ├── AFYI-7AC58ED4 (Italy v1.0).txt │ ├── AFYP-337A2653 (Europe v1.1).txt │ ├── AFYP-E03A6127 (Europe v1.0).txt │ ├── AFYS-4E2D61C3 (Spain v1.0).txt │ ├── AFYS-921A19DF (Spain v1.1).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── wizard_of_oz ├── action_replay_codes │ ├── COZE-8E18A92A (USA v1.0).txt │ ├── COZJ-CFD46404 (Japan v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── world_ends_with_you ├── action_replay_codes │ ├── AWLE-038D607C (USA v1.0) [with CStick support].txt │ ├── AWLE-038D607C (USA v1.0).txt │ ├── AWLJ-34608EC0 (Japan v1.1) [with CStick support].txt │ ├── AWLJ-34608EC0 (Japan v1.1).txt │ ├── AWLP-C5889C49 (Europe v1.0) [with CStick support].txt │ ├── AWLP-C5889C49 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py ├── zelda_phantom_hourglass ├── action_replay_codes │ ├── AZEE-5900DAF3 (USA v1.0).txt │ ├── AZEJ-7853931B (Japan v1.0).txt │ ├── AZEK-7B2230CF (Korea v1.0).txt │ ├── AZEP-D505F823 (Europe v1.0).txt │ └── usrcheat.dat ├── arm7_rtcom_patch │ ├── .clang-format │ ├── .clangd │ ├── Makefile │ ├── arm11_ucode │ │ ├── Makefile │ │ ├── a11ucode.ld │ │ ├── arm11_twlbg_patch │ │ │ ├── arm11_twlbg_patch.s │ │ │ └── twl_bg_patch_bytes.h │ │ └── source │ │ │ ├── a11ucode.h │ │ │ ├── main.cpp │ │ │ ├── main_stuff.cpp │ │ │ ├── main_stuff.h │ │ │ └── ucode_entry.s │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── rtcom.cpp │ │ │ └── rtcom.h │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py └── zelda_spirit_tracks ├── action_replay_codes ├── BKIE-94771A5D (USA v1.0).txt ├── BKIE-EBB51682 (USA v1.1).txt ├── BKIJ-E6ABCF14 (Japan v1.0).txt ├── BKIP-2545185D (Europe v1.1).txt ├── BKIP-48C96A52 (Europe v1.0).txt └── usrcheat.dat ├── arm7_rtcom_patch ├── .clang-format ├── .clangd ├── Makefile ├── arm11_ucode │ ├── Makefile │ ├── a11ucode.ld │ ├── arm11_twlbg_patch │ │ ├── arm11_twlbg_patch.s │ │ └── twl_bg_patch_bytes.h │ └── source │ │ ├── a11ucode.h │ │ ├── main.cpp │ │ ├── main_stuff.cpp │ │ ├── main_stuff.h │ │ └── ucode_entry.s ├── arm7 │ ├── Makefile │ └── source │ │ ├── main.cpp │ │ ├── rtcom.cpp │ │ └── rtcom.h └── arm9 │ ├── Makefile │ └── source │ └── main.cpp ├── arm9_controls_hook.s └── generate_patch.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/README.md -------------------------------------------------------------------------------- /action_replay_codes/ASMC-4F664FC5 (China v1.0 (iQue)).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMC-4F664FC5 (China v1.0 (iQue)).txt -------------------------------------------------------------------------------- /action_replay_codes/ASME-AEA63749 (USA v1.0) [with Nub stick, ZL and ZR].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASME-AEA63749 (USA v1.0) [with Nub stick, ZL and ZR].txt -------------------------------------------------------------------------------- /action_replay_codes/ASME-AEA63749 (USA v1.0).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASME-AEA63749 (USA v1.0).txt -------------------------------------------------------------------------------- /action_replay_codes/ASME-F486F859 (USA v1.1) [with Nub stick, ZL and ZR].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASME-F486F859 (USA v1.1) [with Nub stick, ZL and ZR].txt -------------------------------------------------------------------------------- /action_replay_codes/ASME-F486F859 (USA v1.1).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASME-F486F859 (USA v1.1).txt -------------------------------------------------------------------------------- /action_replay_codes/ASMJ-D2BBD1E6 (Japan v1.1) [with Nub stick, ZL and ZR].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMJ-D2BBD1E6 (Japan v1.1) [with Nub stick, ZL and ZR].txt -------------------------------------------------------------------------------- /action_replay_codes/ASMJ-D2BBD1E6 (Japan v1.1).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMJ-D2BBD1E6 (Japan v1.1).txt -------------------------------------------------------------------------------- /action_replay_codes/ASMJ-D2F380B2 (Japan v1.0) [with Nub stick, ZL and ZR].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMJ-D2F380B2 (Japan v1.0) [with Nub stick, ZL and ZR].txt -------------------------------------------------------------------------------- /action_replay_codes/ASMJ-D2F380B2 (Japan v1.0).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMJ-D2F380B2 (Japan v1.0).txt -------------------------------------------------------------------------------- /action_replay_codes/ASMK-3C73EADE (Korea v1.0) [with Nub stick, ZL and ZR].txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMK-3C73EADE (Korea v1.0) [with Nub stick, ZL and ZR].txt -------------------------------------------------------------------------------- /action_replay_codes/ASMK-3C73EADE (Korea v1.0).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMK-3C73EADE (Korea v1.0).txt -------------------------------------------------------------------------------- /action_replay_codes/ASMP-D3D9F14A (Europe v1.0).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/ASMP-D3D9F14A (Europe v1.0).txt -------------------------------------------------------------------------------- /action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/arm11_twlbg_patch/arm11_twlbg_patch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/arm11_twlbg_patch/arm11_twlbg_patch.s -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/arm11_twlbg_patch/twl_bg_patch_bytes.no_nub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/arm11_twlbg_patch/twl_bg_patch_bytes.no_nub.h -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/arm11_twlbg_patch/twl_bg_patch_bytes.with_nub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/arm11_twlbg_patch/twl_bg_patch_bytes.with_nub.h -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/source/a11ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/source/a11ucode.h -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/source/main.cpp -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/source/main_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/source/main_stuff.cpp -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/source/main_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/source/main_stuff.h -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm11_ucode/source/ucode_entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm11_ucode/source/ucode_entry.s -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/arm9_controls_hook.s -------------------------------------------------------------------------------- /generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/animal_crossing/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/animal_crossing/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/avalon_code/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/avalon_code/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_black_ops/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_black_ops/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_black_ops/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_black_ops/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_black_ops/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_modern_warfare_3/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_modern_warfare_3/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_modern_warfare_3/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_modern_warfare_3/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_modern_warfare_3/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_modern_warfare_3/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_modern_warfare_3/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_world_at_war/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_world_at_war/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_world_at_war/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_world_at_war/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_world_at_war/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_world_at_war/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_world_at_war/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/call_of_duty_world_at_war/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/call_of_duty_world_at_war/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_clean_sweep/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_clean_sweep/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_clean_sweep/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_clean_sweep/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_clean_sweep/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_clean_sweep/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_clean_sweep/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_clean_sweep/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_clean_sweep/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_clean_sweep/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_clean_sweep/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_park_patrol/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_park_patrol/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_park_patrol/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_park_patrol/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_park_patrol/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_park_patrol/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_park_patrol/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/chibi_robo_park_patrol/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/chibi_robo_park_patrol/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/cop_recruit/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/cop_recruit/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/crash_of_the_titans/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/crash_of_the_titans/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/crash_of_the_titans/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/crash_of_the_titans/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/crash_of_the_titans/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/dementium/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/dementium/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/dementium/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/dementium_2/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dementium_2/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins_2/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins_2/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins_2/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/dragon_ball_origins_2/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_ball_origins_2/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_ix/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_ix/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_monsters_joker/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_monsters_joker/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_monsters_joker/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_monsters_joker/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_monsters_joker/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_monsters_joker/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_monsters_joker/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_monsters_joker_2/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_monsters_joker_2/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_monsters_joker_2/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/dragon_quest_monsters_joker_2/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/dragon_quest_monsters_joker_2/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/fighting_fantasy_the_warlock_of_firetop_mountain/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_3/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_3/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_4/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/final_fantasy_4/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_crystal_chronicles_echoes_of_time/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/final_fantasy_crystal_chronicles_ring_of_fates/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/flower_sun_and_rain/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/flower_sun_and_rain/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/flower_sun_and_rain/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/flower_sun_and_rain/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/flower_sun_and_rain/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/geometry_wars_galaxies/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/geometry_wars_galaxies/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/geometry_wars_galaxies/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/geometry_wars_galaxies/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/geometry_wars_galaxies/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/geometry_wars_galaxies/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/geometry_wars_galaxies/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/geometry_wars_galaxies/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/geometry_wars_galaxies/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/golden_sun_dark_dawn/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/golden_sun_dark_dawn/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/golden_sun_dark_dawn/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/golden_sun_dark_dawn/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/golden_sun_dark_dawn/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_007/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_007/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_rogue_agent/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_rogue_agent/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_rogue_agent/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/goldeneye_rogue_agent/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/goldeneye_rogue_agent/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/gta/action_replay_codes/YGXE-DEE4AA12 (USA v1.0).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/action_replay_codes/YGXE-DEE4AA12 (USA v1.0).txt -------------------------------------------------------------------------------- /patches_for_other_games/gta/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/source/a11ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/source/a11ucode.h -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/source/main_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm11_ucode/source/main_stuff.h -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/gta/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/gta/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/gta/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/harvest_moon_ds_island_of_happiness/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/harvest_moon_ds_sunshine_islands/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/harvest_moon_ds_sunshine_islands/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/harvest_moon_ds_sunshine_islands/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_2/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_2/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_2/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_2/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_2/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_3/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_3/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_3/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/inazuma_eleven_3/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/inazuma_eleven_3/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_358_2_days/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_358_2_days/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_358_2_days/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_358_2_days/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_358_2_days/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_358_2_days/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_358_2_days/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_358_2_days/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_358_2_days/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_recoded/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_recoded/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_recoded/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_recoded/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_recoded/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_recoded/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_recoded/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/kingdom_hearts_recoded/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/kingdom_hearts_recoded/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lego_batman/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_batman/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lego_harry_potter_years_1-4/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lego_harry_potter_years_1-4/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_harry_potter_years_1-4/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lego_harry_potter_years_1-4/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_harry_potter_years_1-4/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lego_harry_potter_years_1-4/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_harry_potter_years_1-4/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones_2/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones_2/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones_2/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lego_indiana_jones_2/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_indiana_jones_2/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lego_star_wars/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lego_star_wars/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_2/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_2/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/lost_in_blue_3/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/lost_in_blue_3/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/magicians_quest/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/magicians_quest/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/metroid/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm11_ucode/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm11_ucode/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/metroid/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/metroid/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/metroid/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/mini_ninjas/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/mini_ninjas/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/moon/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/source/a11ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/source/a11ucode.h -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm11_ucode/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/moon/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/moon/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/moon/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/ni_no_kuni/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ni_no_kuni/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/nostalgia/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/nostalgia/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/okamiden/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/okamiden/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/pac-man_world_3/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/pac-man_world_3/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/phantasy_star_zero/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/phantasy_star_zero/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/phantasy_star_zero/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/phantasy_star_zero/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/phantasy_star_zero/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/rayman_ds/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rayman_ds/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/ridge_racer_ds/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/ridge_racer_ds/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_2/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_2/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/rune_factory_3/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/rune_factory_3/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/solatorobo/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/solatorobo/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/soma_bringer/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/soma_bringer/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/sonic_chronicles/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/sonic_chronicles/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/sonic_chronicles/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/sonic_chronicles/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/sonic_chronicles/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm11_ucode/a11ucode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm11_ucode/a11ucode.ld -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/star_fox/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_fox/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/star_wars_lethal_alliance/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/star_wars_lethal_alliance/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_wars_lethal_alliance/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/star_wars_lethal_alliance/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_wars_lethal_alliance/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/star_wars_lethal_alliance/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_wars_lethal_alliance/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/star_wars_lethal_alliance/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/star_wars_lethal_alliance/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/super_monkey_ball_touch_and_roll/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/super_monkey_ball_touch_and_roll/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/super_monkey_ball_touch_and_roll/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/tak_the_great_juju_challenge/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/tak_the_great_juju_challenge/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tak_the_great_juju_challenge/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/tak_the_great_juju_challenge/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tak_the_great_juju_challenge/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tony_hawk_motion/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tony_hawk_motion/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tony_hawk_motion/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/tony_hawk_motion/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/tony_hawk_motion/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/transformers_decepticons/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/transformers_decepticons/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/transformers_decepticons/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/transformers_decepticons/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/transformers_decepticons/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/transformers_decepticons/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/transformers_decepticons/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/transformers_decepticons/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/transformers_decepticons/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm11_ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm11_ucode/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/source/rtcom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/source/rtcom.cpp -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/source/rtcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm7/source/rtcom.h -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm9/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm7_rtcom_patch/arm9/source/main.cpp -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/wizard_of_oz/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/wizard_of_oz/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/world_ends_with_you/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/world_ends_with_you/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/world_ends_with_you/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/world_ends_with_you/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/world_ends_with_you/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/zelda_phantom_hourglass/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/zelda_phantom_hourglass/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_phantom_hourglass/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/zelda_phantom_hourglass/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_phantom_hourglass/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/zelda_phantom_hourglass/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_phantom_hourglass/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/zelda_phantom_hourglass/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_phantom_hourglass/generate_patch.py -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/action_replay_codes/usrcheat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_spirit_tracks/action_replay_codes/usrcheat.dat -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 100 4 | # InsertBraces: 1 5 | -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/.clangd -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/arm7/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_spirit_tracks/arm7_rtcom_patch/arm9/Makefile -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/arm9_controls_hook.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_spirit_tracks/arm9_controls_hook.s -------------------------------------------------------------------------------- /patches_for_other_games/zelda_spirit_tracks/generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shocoman/Analog-Controls-for-NDS-Games-on-3DS/HEAD/patches_for_other_games/zelda_spirit_tracks/generate_patch.py --------------------------------------------------------------------------------