├── .clang-format ├── .gitattributes ├── .github └── assets │ ├── priceless.png │ └── progress.png ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── Makefile ├── asm ├── 42CC4.s ├── c2regs.inc ├── collision.s ├── data │ ├── balloonist_dialogue.data.s │ ├── balloonist_dialogue.rodata.s │ ├── balloonist_dialogue.sdata.s │ ├── cheats.data.s │ ├── game.bss.s │ ├── game.data.s │ ├── game.sbss.s │ ├── game.sdata.s │ ├── gamestates │ │ └── draw.sdata.s │ ├── initialization.sdata.s │ ├── math.data.s │ ├── names.data.s │ ├── names.rodata.s │ ├── names.sdata.s │ ├── overlay_pointer.rodata.s │ ├── psyq.bss.s │ ├── psyq.data.s │ ├── psyq.rodata.s │ ├── psyq.sbss.s │ ├── psyq.sqrt_tbl.s │ ├── save_header.s │ └── sony_text.s ├── header.s ├── images.s ├── math.s ├── memory.s ├── moby_lists.s ├── nonmatchings │ ├── camera │ │ ├── func_80033F08.s │ │ ├── func_80034198.s │ │ ├── func_800342F8.s │ │ ├── func_80034480.s │ │ ├── func_80034C84.s │ │ ├── func_80034CE8.s │ │ ├── func_800357A4.s │ │ └── func_80035FB4.s │ ├── cyclorama │ │ └── func_80050BD0.s │ ├── gamestate_init │ │ ├── func_8002C924.s │ │ ├── func_8002CCC8.s │ │ ├── func_8002D228.s │ │ └── func_8002D338.s │ ├── gamestates │ │ ├── draw │ │ │ ├── func_80017FE4.s │ │ │ ├── func_800181AC.s │ │ │ ├── func_8001844C.s │ │ │ ├── func_80018534.s │ │ │ ├── func_8001860C.s │ │ │ ├── func_80018728.s │ │ │ ├── func_80018878.s │ │ │ ├── func_80018880.s │ │ │ ├── func_80018908.s │ │ │ ├── func_800189F0.s │ │ │ ├── func_80018F30.s │ │ │ ├── func_800190D4.s │ │ │ ├── func_8001919C.s │ │ │ ├── func_80019300.s │ │ │ ├── func_80019698.s │ │ │ ├── func_8001973C.s │ │ │ ├── func_8001A050.s │ │ │ ├── func_8001A40C.s │ │ │ ├── func_8001C694.s │ │ │ ├── func_8001CA38.s │ │ │ └── func_8001CFDC.s │ │ └── update │ │ │ ├── GamestateUpdate.s │ │ │ ├── func_8002DA74.s │ │ │ ├── func_8002E12C.s │ │ │ ├── func_8002EB2C.s │ │ │ ├── func_8002EDF0.s │ │ │ ├── func_8002F3E4.s │ │ │ ├── func_800314B4.s │ │ │ ├── func_800324D8.s │ │ │ ├── func_80032B08.s │ │ │ ├── func_800331AC.s │ │ │ └── func_800334D4.s │ ├── loaders │ │ ├── func_80012D58.s │ │ └── func_8001364C.s │ ├── moby_helpers │ │ ├── func_80038638.s │ │ ├── func_80038DC0.s │ │ ├── func_80038EE0.s │ │ ├── func_80038FC8.s │ │ ├── func_80039398.s │ │ ├── func_80039688.s │ │ ├── func_80039910.s │ │ ├── func_80039AA8.s │ │ ├── func_80039E94.s │ │ ├── func_8003A16C.s │ │ ├── func_8003A420.s │ │ ├── func_8003A850.s │ │ ├── func_8003A920.s │ │ ├── func_8003A9EC.s │ │ ├── func_8003AAEC.s │ │ ├── func_8003ABC0.s │ │ ├── func_8003B854.s │ │ ├── func_8003BAD0.s │ │ ├── func_8003BCCC.s │ │ ├── func_8003BED8.s │ │ ├── func_8003BFC0.s │ │ ├── func_8003C6E4.s │ │ ├── func_8003C85C.s │ │ ├── func_8003C994.s │ │ └── func_8003CAC4.s │ ├── music │ │ ├── func_8002BBE0.s │ │ └── func_8002BFE0.s │ ├── overlays │ │ ├── credits │ │ │ ├── func_credits_8007AA50.s │ │ │ └── func_credits_8007BFD0.s │ │ ├── level_10 │ │ │ ├── D_level_10_8007AAE0.s │ │ │ ├── func_level_10_8007AEA0.s │ │ │ ├── func_level_10_8007AFDC.s │ │ │ ├── func_level_10_8007B020.s │ │ │ ├── func_level_10_8007CFC0.s │ │ │ ├── func_level_10_8007D9C8.s │ │ │ ├── func_level_10_80086134.s │ │ │ └── func_level_10_800873E0.s │ │ ├── level_11 │ │ │ ├── D_level_11_8007AAE0.s │ │ │ ├── func_level_11_8007AF50.s │ │ │ ├── func_level_11_8007B08C.s │ │ │ ├── func_level_11_8007B0D0.s │ │ │ ├── func_level_11_8007D070.s │ │ │ ├── func_level_11_8007DA78.s │ │ │ ├── func_level_11_80088098.s │ │ │ └── func_level_11_800892C4.s │ │ ├── level_12 │ │ │ ├── func_level_12_8007AE40.s │ │ │ ├── func_level_12_80083274.s │ │ │ └── func_level_12_800844A0.s │ │ ├── level_13 │ │ │ ├── D_level_13_8007AAE0.s │ │ │ ├── func_level_13_8007AF2C.s │ │ │ ├── func_level_13_8007B068.s │ │ │ ├── func_level_13_8007B0AC.s │ │ │ ├── func_level_13_8007D04C.s │ │ │ ├── func_level_13_8007DA54.s │ │ │ ├── func_level_13_80087E20.s │ │ │ ├── func_level_13_80088F68.s │ │ │ └── func_level_13_80089ECC.s │ │ ├── level_14 │ │ │ ├── func_level_14_8007AF94.s │ │ │ ├── func_level_14_800826F0.s │ │ │ └── func_level_14_8008391C.s │ │ ├── level_15 │ │ │ ├── D_level_15_8007AA6C.s │ │ │ ├── D_level_15_8007AA70.s │ │ │ ├── D_level_15_8007AA80.s │ │ │ ├── D_level_15_8007AA84.s │ │ │ ├── func_level_15_8007AE08.s │ │ │ ├── func_level_15_8007AEDC.s │ │ │ ├── func_level_15_8007B1FC.s │ │ │ ├── func_level_15_8007B4B0.s │ │ │ ├── func_level_15_8007B68C.s │ │ │ ├── func_level_15_8007CFB4.s │ │ │ ├── func_level_15_8008249C.s │ │ │ ├── func_level_15_80083330.s │ │ │ └── func_level_15_80084128.s │ │ ├── level_20 │ │ │ ├── D_level_20_8007AAE0.s │ │ │ ├── func_level_20_8007B878.s │ │ │ ├── func_level_20_8007B9B4.s │ │ │ ├── func_level_20_8007B9F8.s │ │ │ ├── func_level_20_8007D998.s │ │ │ ├── func_level_20_8007E3A0.s │ │ │ ├── func_level_20_8008A258.s │ │ │ ├── func_level_20_8008AE28.s │ │ │ └── func_level_20_8008BFF0.s │ │ ├── level_21 │ │ │ ├── D_level_21_8007AAE0.s │ │ │ ├── func_level_21_8007B718.s │ │ │ ├── func_level_21_8007B854.s │ │ │ ├── func_level_21_8007B898.s │ │ │ ├── func_level_21_8007D838.s │ │ │ ├── func_level_21_8007E240.s │ │ │ ├── func_level_21_8008A4D0.s │ │ │ ├── func_level_21_8008B1C0.s │ │ │ └── func_level_21_8008C540.s │ │ ├── level_22 │ │ │ ├── D_level_22_8007AAE0.s │ │ │ ├── func_level_22_8007B718.s │ │ │ ├── func_level_22_8007B854.s │ │ │ ├── func_level_22_8007B898.s │ │ │ ├── func_level_22_8007D838.s │ │ │ ├── func_level_22_8007E240.s │ │ │ ├── func_level_22_80088B88.s │ │ │ ├── func_level_22_80089714.s │ │ │ └── func_level_22_8008A9A8.s │ │ ├── level_23 │ │ │ ├── func_level_23_8007B4C8.s │ │ │ ├── func_level_23_80083608.s │ │ │ ├── func_level_23_80083F2C.s │ │ │ └── func_level_23_80085184.s │ │ ├── level_24 │ │ │ ├── func_level_24_8007AEB8.s │ │ │ ├── func_level_24_800845F0.s │ │ │ ├── func_level_24_80084EF0.s │ │ │ └── func_level_24_8008611C.s │ │ ├── level_25 │ │ │ ├── D_level_25_8007AA6C.s │ │ │ ├── D_level_25_8007AA70.s │ │ │ ├── D_level_25_8007AA80.s │ │ │ ├── D_level_25_8007AA84.s │ │ │ ├── D_level_25_8007AB0C.s │ │ │ ├── func_level_25_8007AE08.s │ │ │ ├── func_level_25_8007AEDC.s │ │ │ ├── func_level_25_8007B1FC.s │ │ │ ├── func_level_25_8007B4B0.s │ │ │ ├── func_level_25_8007B68C.s │ │ │ ├── func_level_25_8007CFB4.s │ │ │ ├── func_level_25_800819BC.s │ │ │ ├── func_level_25_80082300.s │ │ │ └── func_level_25_80082F58.s │ │ ├── level_30 │ │ │ ├── D_level_30_8007AAE0.s │ │ │ ├── func_level_30_8007B870.s │ │ │ ├── func_level_30_8007B9AC.s │ │ │ ├── func_level_30_8007B9F0.s │ │ │ ├── func_level_30_8007D990.s │ │ │ ├── func_level_30_8007E398.s │ │ │ ├── func_level_30_8008B2C0.s │ │ │ ├── func_level_30_8008BE98.s │ │ │ └── func_level_30_8008D2D0.s │ │ ├── level_31 │ │ │ ├── func_level_31_8007BB00.s │ │ │ ├── func_level_31_8008A36C.s │ │ │ ├── func_level_31_8008AF54.s │ │ │ └── func_level_31_8008C9D8.s │ │ ├── level_32 │ │ │ ├── func_level_32_8007B64C.s │ │ │ ├── func_level_32_8008883C.s │ │ │ ├── func_level_32_80089454.s │ │ │ └── func_level_32_8008B0B0.s │ │ ├── level_33 │ │ │ ├── func_level_33_8007B7A8.s │ │ │ ├── func_level_33_80086DD8.s │ │ │ ├── func_level_33_80087B40.s │ │ │ └── func_level_33_80089450.s │ │ ├── level_34 │ │ │ ├── func_level_34_8007AF28.s │ │ │ ├── func_level_34_80083AB4.s │ │ │ ├── func_level_34_80084830.s │ │ │ └── func_level_34_80085F40.s │ │ ├── level_35 │ │ │ ├── D_level_35_8007AA6C.s │ │ │ ├── D_level_35_8007AA70.s │ │ │ ├── D_level_35_8007AA80.s │ │ │ ├── D_level_35_8007AA84.s │ │ │ ├── D_level_35_8007AB0C.s │ │ │ ├── func_level_35_8007AE08.s │ │ │ ├── func_level_35_8007AEDC.s │ │ │ ├── func_level_35_8007B1FC.s │ │ │ ├── func_level_35_8007B4B0.s │ │ │ ├── func_level_35_8007B68C.s │ │ │ ├── func_level_35_8007CFB4.s │ │ │ ├── func_level_35_80081F0C.s │ │ │ ├── func_level_35_80082AA0.s │ │ │ └── func_level_35_800836F8.s │ │ ├── level_40 │ │ │ ├── D_level_40_8007AAE0.s │ │ │ ├── func_level_40_8007B664.s │ │ │ ├── func_level_40_8007B7A0.s │ │ │ ├── func_level_40_8007B7E4.s │ │ │ ├── func_level_40_8007D784.s │ │ │ ├── func_level_40_8007E18C.s │ │ │ ├── func_level_40_80087EF0.s │ │ │ ├── func_level_40_800888F8.s │ │ │ └── func_level_40_80089AB8.s │ │ ├── level_41 │ │ │ ├── func_level_41_8007B5DC.s │ │ │ ├── func_level_41_8008465C.s │ │ │ ├── func_level_41_800853AC.s │ │ │ └── func_level_41_800866D8.s │ │ ├── level_42 │ │ │ ├── func_level_42_8007AFBC.s │ │ │ ├── func_level_42_80084718.s │ │ │ ├── func_level_42_80085084.s │ │ │ └── func_level_42_800861CC.s │ │ ├── level_43 │ │ │ ├── func_level_43_8007B698.s │ │ │ ├── func_level_43_80086B38.s │ │ │ ├── func_level_43_80087400.s │ │ │ └── func_level_43_8008869C.s │ │ ├── level_44 │ │ │ ├── func_level_44_8007B770.s │ │ │ ├── func_level_44_800874FC.s │ │ │ ├── func_level_44_80088178.s │ │ │ └── func_level_44_800894B0.s │ │ ├── level_45 │ │ │ ├── D_level_45_8007AA6C.s │ │ │ ├── D_level_45_8007AA70.s │ │ │ ├── D_level_45_8007AA80.s │ │ │ ├── D_level_45_8007AA84.s │ │ │ ├── D_level_45_8007AB0C.s │ │ │ ├── func_level_45_8007AE08.s │ │ │ ├── func_level_45_8007AEDC.s │ │ │ ├── func_level_45_8007B1FC.s │ │ │ ├── func_level_45_8007B4B0.s │ │ │ ├── func_level_45_8007B68C.s │ │ │ ├── func_level_45_8007CFB4.s │ │ │ ├── func_level_45_8008223C.s │ │ │ ├── func_level_45_80082F54.s │ │ │ └── func_level_45_80083BAC.s │ │ ├── level_50 │ │ │ ├── D_level_50_8007AAE0.s │ │ │ ├── func_level_50_8007B898.s │ │ │ ├── func_level_50_8007B9D4.s │ │ │ ├── func_level_50_8007BA18.s │ │ │ ├── func_level_50_8007D9B8.s │ │ │ ├── func_level_50_8007E3C0.s │ │ │ ├── func_level_50_80088E24.s │ │ │ ├── func_level_50_800897FC.s │ │ │ └── func_level_50_8008AA24.s │ │ ├── level_51 │ │ │ ├── func_level_51_8007B4F8.s │ │ │ ├── func_level_51_80084B94.s │ │ │ ├── func_level_51_800857FC.s │ │ │ └── func_level_51_80086D38.s │ │ ├── level_52 │ │ │ ├── func_level_52_8007B4DC.s │ │ │ ├── func_level_52_80084620.s │ │ │ ├── func_level_52_800850A0.s │ │ │ └── func_level_52_80086438.s │ │ ├── level_53 │ │ │ ├── func_level_53_8007B510.s │ │ │ ├── func_level_53_8008590C.s │ │ │ ├── func_level_53_80086754.s │ │ │ └── func_level_53_800881D8.s │ │ ├── level_54 │ │ │ ├── func_level_54_8007AF50.s │ │ │ ├── func_level_54_800836A8.s │ │ │ ├── func_level_54_80084028.s │ │ │ └── func_level_54_80085254.s │ │ ├── level_55 │ │ │ ├── D_level_55_8007AA6C.s │ │ │ ├── D_level_55_8007AA70.s │ │ │ ├── D_level_55_8007AA80.s │ │ │ ├── D_level_55_8007AA84.s │ │ │ ├── func_level_55_8007AE08.s │ │ │ ├── func_level_55_8007AEDC.s │ │ │ ├── func_level_55_8007B1FC.s │ │ │ ├── func_level_55_8007B4B0.s │ │ │ ├── func_level_55_8007B68C.s │ │ │ ├── func_level_55_8007CFB4.s │ │ │ ├── func_level_55_80082028.s │ │ │ ├── func_level_55_80082D94.s │ │ │ └── func_level_55_80083B8C.s │ │ ├── level_60 │ │ │ ├── D_level_60_8007AAE0.s │ │ │ ├── func_level_60_8007AE10.s │ │ │ ├── func_level_60_8007AF4C.s │ │ │ ├── func_level_60_8007AF90.s │ │ │ ├── func_level_60_8007CF30.s │ │ │ ├── func_level_60_8007D938.s │ │ │ ├── func_level_60_80083568.s │ │ │ ├── func_level_60_80083ED8.s │ │ │ └── func_level_60_80084EA0.s │ │ ├── level_61 │ │ │ ├── func_level_61_8007B528.s │ │ │ ├── func_level_61_80085664.s │ │ │ ├── func_level_61_80086144.s │ │ │ └── func_level_61_8008747C.s │ │ ├── level_62 │ │ │ ├── func_level_62_8007AE5C.s │ │ │ ├── func_level_62_80083108.s │ │ │ ├── func_level_62_80083B4C.s │ │ │ └── func_level_62_80084EAC.s │ │ ├── level_63 │ │ │ ├── func_level_63_8007AD64.s │ │ │ ├── func_level_63_80082F24.s │ │ │ ├── func_level_63_800836F0.s │ │ │ └── func_level_63_80084634.s │ │ ├── level_64 │ │ │ ├── func_level_64_8007AD4C.s │ │ │ ├── func_level_64_80083690.s │ │ │ ├── func_level_64_800840FC.s │ │ │ └── func_level_64_80085230.s │ │ └── titlescreen │ │ │ ├── func_titlescreen_8007AAD4.s │ │ │ ├── func_titlescreen_8007ABAC.s │ │ │ ├── func_titlescreen_8007CD38.s │ │ │ └── func_titlescreen_8007CEE4.s │ ├── pete │ │ ├── func_8003D3B8.s │ │ ├── func_8003D6D0.s │ │ ├── func_8003D840.s │ │ ├── func_8003DAE4.s │ │ ├── func_8003DE44.s │ │ ├── func_8003E318.s │ │ ├── func_8003E90C.s │ │ ├── func_8003EA68.s │ │ ├── func_8003FE40.s │ │ ├── func_80041270.s │ │ ├── func_80041670.s │ │ ├── func_80043FE4.s │ │ ├── func_80047B60.s │ │ ├── func_8004888C.s │ │ ├── func_80048B9C.s │ │ ├── func_80048D10.s │ │ ├── func_80049660.s │ │ ├── func_80049880.s │ │ ├── func_800499C0.s │ │ ├── func_80049FAC.s │ │ ├── func_8004A200.s │ │ ├── func_8004A7EC.s │ │ ├── func_8004AA0C.s │ │ └── func_8004AC24.s │ └── spu │ │ ├── PlaySound.s │ │ └── func_8005637C.s ├── order_table.s ├── particle_alloc.s ├── psyq.libsn.s ├── psyq.s ├── renderers │ ├── r_cyclorama.s │ ├── r_environment.s │ ├── r_flame.s │ ├── r_moby.s │ ├── r_particles.s │ ├── r_pete.s │ └── r_shadows.s ├── structs.inc └── system_time.s ├── assets ├── decode_image.py ├── encode_image.py ├── save_header.databin.bin ├── sony_text.databin.bin └── sony_text.png ├── docker_env.sh ├── include ├── 42CC4.h ├── 4BEF8.h ├── balloonist.h ├── buffers.h ├── camera.h ├── cd.h ├── cheats.h ├── checkpoint.h ├── collision.h ├── common.h ├── cyclorama.h ├── dragon.h ├── environment.h ├── fairy.h ├── gamepad.h ├── gamestates │ ├── draw.h │ ├── init.h │ └── update.h ├── graphics.h ├── gte_macros.inc ├── hud.h ├── images.h ├── include_asm.h ├── initialization.h ├── loaders.h ├── macro.inc ├── math.h ├── matrix.h ├── memory.h ├── moby.h ├── moby_helpers.h ├── moby_lists.h ├── music.h ├── overlay_pointers.h ├── overlays │ └── moby_spawn.inc.h ├── rand.h ├── renderers.h ├── save_file.h ├── sony_image.h ├── sound_table.h ├── special_surfaces.h ├── specular_and_metal.h ├── spu.h ├── spyro.h ├── titlescreen.h ├── variables.h ├── vector.h └── wad.h ├── overlays.ld ├── progress.md ├── progress.py ├── psx.ld ├── psyq └── .gitkeep ├── readme.md ├── sha256sum.txt ├── src ├── 4BEF8.c ├── camera.c ├── cd.c ├── cheats.c ├── checkpoint.c ├── completion.c ├── crash_demo.c ├── cyclorama.c ├── environment.c ├── gamepad.c ├── gamestates │ ├── draw.c │ ├── init.c │ └── update.c ├── hud.c ├── initialization.c ├── loaders.c ├── main.c ├── moby_helpers.c ├── moby_interpolation_check.c ├── music.c ├── overlay_pointers.c ├── overlays │ ├── credits.c │ ├── level_10 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_11 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_12 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_13 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_14 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_15 │ │ ├── flight.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_20 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_21 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_22 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_23 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_24 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_25 │ │ ├── flight.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_30 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_31 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_32 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_33 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_34 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_35 │ │ ├── flight.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_40 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_41 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_42 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_43 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_44 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_45 │ │ ├── flight.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_50 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_51 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_52 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_53 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_54 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_55 │ │ ├── flight.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_60 │ │ ├── balloonist.c │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_61 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_62 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_63 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ ├── level_64 │ │ ├── moby.c │ │ ├── particle.c │ │ └── terminator.c │ └── titlescreen.c ├── pete.c ├── rand.c ├── save_file.c ├── special_surfaces.c ├── specular_and_metal.c └── spu.c └── tools ├── fix_jtbl_align.py ├── fix_str_align.py ├── gcc2.7.2 ├── cc1 └── gcc └── remove_sections.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/assets/priceless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/.github/assets/priceless.png -------------------------------------------------------------------------------- /.github/assets/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/.github/assets/progress.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/Makefile -------------------------------------------------------------------------------- /asm/42CC4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/42CC4.s -------------------------------------------------------------------------------- /asm/c2regs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/c2regs.inc -------------------------------------------------------------------------------- /asm/collision.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/collision.s -------------------------------------------------------------------------------- /asm/data/balloonist_dialogue.data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/balloonist_dialogue.data.s -------------------------------------------------------------------------------- /asm/data/balloonist_dialogue.rodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/balloonist_dialogue.rodata.s -------------------------------------------------------------------------------- /asm/data/balloonist_dialogue.sdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/balloonist_dialogue.sdata.s -------------------------------------------------------------------------------- /asm/data/cheats.data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/cheats.data.s -------------------------------------------------------------------------------- /asm/data/game.bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/game.bss.s -------------------------------------------------------------------------------- /asm/data/game.data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/game.data.s -------------------------------------------------------------------------------- /asm/data/game.sbss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/game.sbss.s -------------------------------------------------------------------------------- /asm/data/game.sdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/game.sdata.s -------------------------------------------------------------------------------- /asm/data/gamestates/draw.sdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/gamestates/draw.sdata.s -------------------------------------------------------------------------------- /asm/data/initialization.sdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/initialization.sdata.s -------------------------------------------------------------------------------- /asm/data/math.data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/math.data.s -------------------------------------------------------------------------------- /asm/data/names.data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/names.data.s -------------------------------------------------------------------------------- /asm/data/names.rodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/names.rodata.s -------------------------------------------------------------------------------- /asm/data/names.sdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/names.sdata.s -------------------------------------------------------------------------------- /asm/data/overlay_pointer.rodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/overlay_pointer.rodata.s -------------------------------------------------------------------------------- /asm/data/psyq.bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/psyq.bss.s -------------------------------------------------------------------------------- /asm/data/psyq.data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/psyq.data.s -------------------------------------------------------------------------------- /asm/data/psyq.rodata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/psyq.rodata.s -------------------------------------------------------------------------------- /asm/data/psyq.sbss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/psyq.sbss.s -------------------------------------------------------------------------------- /asm/data/psyq.sqrt_tbl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/psyq.sqrt_tbl.s -------------------------------------------------------------------------------- /asm/data/save_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/save_header.s -------------------------------------------------------------------------------- /asm/data/sony_text.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/data/sony_text.s -------------------------------------------------------------------------------- /asm/header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/header.s -------------------------------------------------------------------------------- /asm/images.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/images.s -------------------------------------------------------------------------------- /asm/math.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/math.s -------------------------------------------------------------------------------- /asm/memory.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/memory.s -------------------------------------------------------------------------------- /asm/moby_lists.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/moby_lists.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_80033F08.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_80033F08.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_80034198.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_80034198.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_800342F8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_800342F8.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_80034480.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_80034480.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_80034C84.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_80034C84.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_80034CE8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_80034CE8.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_800357A4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_800357A4.s -------------------------------------------------------------------------------- /asm/nonmatchings/camera/func_80035FB4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/camera/func_80035FB4.s -------------------------------------------------------------------------------- /asm/nonmatchings/cyclorama/func_80050BD0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/cyclorama/func_80050BD0.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestate_init/func_8002C924.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestate_init/func_8002C924.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestate_init/func_8002CCC8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestate_init/func_8002CCC8.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestate_init/func_8002D228.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestate_init/func_8002D228.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestate_init/func_8002D338.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestate_init/func_8002D338.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80017FE4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80017FE4.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_800181AC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_800181AC.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001844C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001844C.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80018534.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80018534.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001860C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001860C.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80018728.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80018728.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80018878.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80018878.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80018880.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80018880.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80018908.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80018908.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_800189F0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_800189F0.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80018F30.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80018F30.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_800190D4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_800190D4.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001919C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001919C.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80019300.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80019300.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_80019698.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_80019698.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001973C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001973C.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001A050.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001A050.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001A40C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001A40C.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001C694.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001C694.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001CA38.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001CA38.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/draw/func_8001CFDC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/draw/func_8001CFDC.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/GamestateUpdate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/GamestateUpdate.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_8002DA74.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_8002DA74.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_8002E12C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_8002E12C.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_8002EB2C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_8002EB2C.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_8002EDF0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_8002EDF0.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_8002F3E4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_8002F3E4.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_800314B4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_800314B4.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_800324D8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_800324D8.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_80032B08.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_80032B08.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_800331AC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_800331AC.s -------------------------------------------------------------------------------- /asm/nonmatchings/gamestates/update/func_800334D4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/gamestates/update/func_800334D4.s -------------------------------------------------------------------------------- /asm/nonmatchings/loaders/func_80012D58.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/loaders/func_80012D58.s -------------------------------------------------------------------------------- /asm/nonmatchings/loaders/func_8001364C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/loaders/func_8001364C.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80038638.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80038638.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80038DC0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80038DC0.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80038EE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80038EE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80038FC8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80038FC8.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80039398.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80039398.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80039688.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80039688.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80039910.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80039910.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80039AA8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80039AA8.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_80039E94.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_80039E94.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003A16C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003A16C.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003A420.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003A420.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003A850.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003A850.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003A920.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003A920.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003A9EC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003A9EC.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003AAEC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003AAEC.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003ABC0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003ABC0.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003B854.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003B854.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003BAD0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003BAD0.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003BCCC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003BCCC.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003BED8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003BED8.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003BFC0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003BFC0.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003C6E4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003C6E4.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003C85C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003C85C.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003C994.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003C994.s -------------------------------------------------------------------------------- /asm/nonmatchings/moby_helpers/func_8003CAC4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/moby_helpers/func_8003CAC4.s -------------------------------------------------------------------------------- /asm/nonmatchings/music/func_8002BBE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/music/func_8002BBE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/music/func_8002BFE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/music/func_8002BFE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/credits/func_credits_8007AA50.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/credits/func_credits_8007AA50.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/credits/func_credits_8007BFD0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/credits/func_credits_8007BFD0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/D_level_10_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/D_level_10_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/func_level_10_8007AEA0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/func_level_10_8007AEA0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/func_level_10_8007AFDC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/func_level_10_8007AFDC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/func_level_10_8007B020.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/func_level_10_8007B020.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/func_level_10_8007CFC0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/func_level_10_8007CFC0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/func_level_10_8007D9C8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/func_level_10_8007D9C8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/func_level_10_80086134.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/func_level_10_80086134.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_10/func_level_10_800873E0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_10/func_level_10_800873E0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/D_level_11_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/D_level_11_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/func_level_11_8007AF50.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/func_level_11_8007AF50.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/func_level_11_8007B08C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/func_level_11_8007B08C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/func_level_11_8007B0D0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/func_level_11_8007B0D0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/func_level_11_8007D070.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/func_level_11_8007D070.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/func_level_11_8007DA78.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/func_level_11_8007DA78.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/func_level_11_80088098.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/func_level_11_80088098.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_11/func_level_11_800892C4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_11/func_level_11_800892C4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_12/func_level_12_8007AE40.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_12/func_level_12_8007AE40.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_12/func_level_12_80083274.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_12/func_level_12_80083274.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_12/func_level_12_800844A0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_12/func_level_12_800844A0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/D_level_13_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/D_level_13_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_8007AF2C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_8007AF2C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_8007B068.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_8007B068.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_8007B0AC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_8007B0AC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_8007D04C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_8007D04C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_8007DA54.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_8007DA54.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_80087E20.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_80087E20.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_80088F68.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_80088F68.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_13/func_level_13_80089ECC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_13/func_level_13_80089ECC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_14/func_level_14_8007AF94.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_14/func_level_14_8007AF94.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_14/func_level_14_800826F0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_14/func_level_14_800826F0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_14/func_level_14_8008391C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_14/func_level_14_8008391C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/D_level_15_8007AA6C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/D_level_15_8007AA6C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/D_level_15_8007AA70.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/D_level_15_8007AA70.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/D_level_15_8007AA80.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/D_level_15_8007AA80.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/D_level_15_8007AA84.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/D_level_15_8007AA84.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_8007AE08.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_8007AE08.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_8007AEDC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_8007AEDC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_8007B1FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_8007B1FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_8007B4B0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_8007B4B0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_8007B68C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_8007B68C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_8007CFB4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_8007CFB4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_8008249C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_8008249C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_80083330.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_80083330.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_15/func_level_15_80084128.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_15/func_level_15_80084128.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/D_level_20_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/D_level_20_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8007B878.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8007B878.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8007B9B4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8007B9B4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8007B9F8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8007B9F8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8007D998.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8007D998.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8007E3A0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8007E3A0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8008A258.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8008A258.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8008AE28.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8008AE28.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_20/func_level_20_8008BFF0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_20/func_level_20_8008BFF0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/D_level_21_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/D_level_21_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8007B718.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8007B718.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8007B854.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8007B854.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8007B898.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8007B898.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8007D838.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8007D838.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8007E240.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8007E240.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8008A4D0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8008A4D0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8008B1C0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8008B1C0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_21/func_level_21_8008C540.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_21/func_level_21_8008C540.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/D_level_22_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/D_level_22_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_8007B718.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_8007B718.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_8007B854.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_8007B854.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_8007B898.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_8007B898.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_8007D838.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_8007D838.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_8007E240.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_8007E240.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_80088B88.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_80088B88.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_80089714.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_80089714.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_22/func_level_22_8008A9A8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_22/func_level_22_8008A9A8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_23/func_level_23_8007B4C8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_23/func_level_23_8007B4C8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_23/func_level_23_80083608.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_23/func_level_23_80083608.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_23/func_level_23_80083F2C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_23/func_level_23_80083F2C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_23/func_level_23_80085184.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_23/func_level_23_80085184.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_24/func_level_24_8007AEB8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_24/func_level_24_8007AEB8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_24/func_level_24_800845F0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_24/func_level_24_800845F0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_24/func_level_24_80084EF0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_24/func_level_24_80084EF0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_24/func_level_24_8008611C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_24/func_level_24_8008611C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/D_level_25_8007AA6C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/D_level_25_8007AA6C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/D_level_25_8007AA70.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/D_level_25_8007AA70.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/D_level_25_8007AA80.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/D_level_25_8007AA80.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/D_level_25_8007AA84.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/D_level_25_8007AA84.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/D_level_25_8007AB0C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/D_level_25_8007AB0C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_8007AE08.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_8007AE08.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_8007AEDC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_8007AEDC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_8007B1FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_8007B1FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_8007B4B0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_8007B4B0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_8007B68C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_8007B68C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_8007CFB4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_8007CFB4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_800819BC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_800819BC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_80082300.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_80082300.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_25/func_level_25_80082F58.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_25/func_level_25_80082F58.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/D_level_30_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/D_level_30_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8007B870.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8007B870.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8007B9AC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8007B9AC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8007B9F0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8007B9F0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8007D990.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8007D990.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8007E398.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8007E398.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8008B2C0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8008B2C0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8008BE98.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8008BE98.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_30/func_level_30_8008D2D0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_30/func_level_30_8008D2D0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_31/func_level_31_8007BB00.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_31/func_level_31_8007BB00.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_31/func_level_31_8008A36C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_31/func_level_31_8008A36C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_31/func_level_31_8008AF54.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_31/func_level_31_8008AF54.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_31/func_level_31_8008C9D8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_31/func_level_31_8008C9D8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_32/func_level_32_8007B64C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_32/func_level_32_8007B64C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_32/func_level_32_8008883C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_32/func_level_32_8008883C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_32/func_level_32_80089454.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_32/func_level_32_80089454.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_32/func_level_32_8008B0B0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_32/func_level_32_8008B0B0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_33/func_level_33_8007B7A8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_33/func_level_33_8007B7A8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_33/func_level_33_80086DD8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_33/func_level_33_80086DD8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_33/func_level_33_80087B40.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_33/func_level_33_80087B40.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_33/func_level_33_80089450.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_33/func_level_33_80089450.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_34/func_level_34_8007AF28.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_34/func_level_34_8007AF28.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_34/func_level_34_80083AB4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_34/func_level_34_80083AB4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_34/func_level_34_80084830.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_34/func_level_34_80084830.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_34/func_level_34_80085F40.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_34/func_level_34_80085F40.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/D_level_35_8007AA6C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/D_level_35_8007AA6C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/D_level_35_8007AA70.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/D_level_35_8007AA70.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/D_level_35_8007AA80.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/D_level_35_8007AA80.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/D_level_35_8007AA84.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/D_level_35_8007AA84.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/D_level_35_8007AB0C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/D_level_35_8007AB0C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_8007AE08.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_8007AE08.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_8007AEDC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_8007AEDC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_8007B1FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_8007B1FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_8007B4B0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_8007B4B0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_8007B68C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_8007B68C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_8007CFB4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_8007CFB4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_80081F0C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_80081F0C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_80082AA0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_80082AA0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_35/func_level_35_800836F8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_35/func_level_35_800836F8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/D_level_40_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/D_level_40_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_8007B664.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_8007B664.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_8007B7A0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_8007B7A0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_8007B7E4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_8007B7E4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_8007D784.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_8007D784.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_8007E18C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_8007E18C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_80087EF0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_80087EF0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_800888F8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_800888F8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_40/func_level_40_80089AB8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_40/func_level_40_80089AB8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_41/func_level_41_8007B5DC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_41/func_level_41_8007B5DC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_41/func_level_41_8008465C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_41/func_level_41_8008465C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_41/func_level_41_800853AC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_41/func_level_41_800853AC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_41/func_level_41_800866D8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_41/func_level_41_800866D8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_42/func_level_42_8007AFBC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_42/func_level_42_8007AFBC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_42/func_level_42_80084718.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_42/func_level_42_80084718.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_42/func_level_42_80085084.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_42/func_level_42_80085084.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_42/func_level_42_800861CC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_42/func_level_42_800861CC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_43/func_level_43_8007B698.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_43/func_level_43_8007B698.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_43/func_level_43_80086B38.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_43/func_level_43_80086B38.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_43/func_level_43_80087400.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_43/func_level_43_80087400.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_43/func_level_43_8008869C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_43/func_level_43_8008869C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_44/func_level_44_8007B770.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_44/func_level_44_8007B770.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_44/func_level_44_800874FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_44/func_level_44_800874FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_44/func_level_44_80088178.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_44/func_level_44_80088178.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_44/func_level_44_800894B0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_44/func_level_44_800894B0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/D_level_45_8007AA6C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/D_level_45_8007AA6C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/D_level_45_8007AA70.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/D_level_45_8007AA70.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/D_level_45_8007AA80.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/D_level_45_8007AA80.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/D_level_45_8007AA84.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/D_level_45_8007AA84.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/D_level_45_8007AB0C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/D_level_45_8007AB0C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_8007AE08.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_8007AE08.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_8007AEDC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_8007AEDC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_8007B1FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_8007B1FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_8007B4B0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_8007B4B0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_8007B68C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_8007B68C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_8007CFB4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_8007CFB4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_8008223C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_8008223C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_80082F54.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_80082F54.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_45/func_level_45_80083BAC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_45/func_level_45_80083BAC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/D_level_50_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/D_level_50_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_8007B898.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_8007B898.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_8007B9D4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_8007B9D4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_8007BA18.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_8007BA18.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_8007D9B8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_8007D9B8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_8007E3C0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_8007E3C0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_80088E24.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_80088E24.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_800897FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_800897FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_50/func_level_50_8008AA24.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_50/func_level_50_8008AA24.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_51/func_level_51_8007B4F8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_51/func_level_51_8007B4F8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_51/func_level_51_80084B94.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_51/func_level_51_80084B94.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_51/func_level_51_800857FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_51/func_level_51_800857FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_51/func_level_51_80086D38.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_51/func_level_51_80086D38.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_52/func_level_52_8007B4DC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_52/func_level_52_8007B4DC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_52/func_level_52_80084620.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_52/func_level_52_80084620.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_52/func_level_52_800850A0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_52/func_level_52_800850A0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_52/func_level_52_80086438.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_52/func_level_52_80086438.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_53/func_level_53_8007B510.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_53/func_level_53_8007B510.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_53/func_level_53_8008590C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_53/func_level_53_8008590C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_53/func_level_53_80086754.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_53/func_level_53_80086754.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_53/func_level_53_800881D8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_53/func_level_53_800881D8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_54/func_level_54_8007AF50.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_54/func_level_54_8007AF50.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_54/func_level_54_800836A8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_54/func_level_54_800836A8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_54/func_level_54_80084028.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_54/func_level_54_80084028.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_54/func_level_54_80085254.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_54/func_level_54_80085254.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/D_level_55_8007AA6C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/D_level_55_8007AA6C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/D_level_55_8007AA70.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/D_level_55_8007AA70.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/D_level_55_8007AA80.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/D_level_55_8007AA80.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/D_level_55_8007AA84.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/D_level_55_8007AA84.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_8007AE08.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_8007AE08.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_8007AEDC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_8007AEDC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_8007B1FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_8007B1FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_8007B4B0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_8007B4B0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_8007B68C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_8007B68C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_8007CFB4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_8007CFB4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_80082028.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_80082028.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_80082D94.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_80082D94.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_55/func_level_55_80083B8C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_55/func_level_55_80083B8C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/D_level_60_8007AAE0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/D_level_60_8007AAE0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_8007AE10.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_8007AE10.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_8007AF4C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_8007AF4C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_8007AF90.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_8007AF90.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_8007CF30.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_8007CF30.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_8007D938.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_8007D938.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_80083568.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_80083568.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_80083ED8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_80083ED8.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_60/func_level_60_80084EA0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_60/func_level_60_80084EA0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_61/func_level_61_8007B528.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_61/func_level_61_8007B528.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_61/func_level_61_80085664.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_61/func_level_61_80085664.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_61/func_level_61_80086144.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_61/func_level_61_80086144.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_61/func_level_61_8008747C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_61/func_level_61_8008747C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_62/func_level_62_8007AE5C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_62/func_level_62_8007AE5C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_62/func_level_62_80083108.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_62/func_level_62_80083108.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_62/func_level_62_80083B4C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_62/func_level_62_80083B4C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_62/func_level_62_80084EAC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_62/func_level_62_80084EAC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_63/func_level_63_8007AD64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_63/func_level_63_8007AD64.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_63/func_level_63_80082F24.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_63/func_level_63_80082F24.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_63/func_level_63_800836F0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_63/func_level_63_800836F0.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_63/func_level_63_80084634.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_63/func_level_63_80084634.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_64/func_level_64_8007AD4C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_64/func_level_64_8007AD4C.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_64/func_level_64_80083690.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_64/func_level_64_80083690.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_64/func_level_64_800840FC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_64/func_level_64_800840FC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/level_64/func_level_64_80085230.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/level_64/func_level_64_80085230.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007AAD4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007AAD4.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007ABAC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007ABAC.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007CD38.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007CD38.s -------------------------------------------------------------------------------- /asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007CEE4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/overlays/titlescreen/func_titlescreen_8007CEE4.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003D3B8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003D3B8.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003D6D0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003D6D0.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003D840.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003D840.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003DAE4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003DAE4.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003DE44.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003DE44.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003E318.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003E318.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003E90C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003E90C.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003EA68.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003EA68.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8003FE40.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8003FE40.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80041270.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80041270.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80041670.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80041670.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80043FE4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80043FE4.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80047B60.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80047B60.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8004888C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8004888C.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80048B9C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80048B9C.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80048D10.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80048D10.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80049660.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80049660.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80049880.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80049880.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_800499C0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_800499C0.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_80049FAC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_80049FAC.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8004A200.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8004A200.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8004A7EC.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8004A7EC.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8004AA0C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8004AA0C.s -------------------------------------------------------------------------------- /asm/nonmatchings/pete/func_8004AC24.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/pete/func_8004AC24.s -------------------------------------------------------------------------------- /asm/nonmatchings/spu/PlaySound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/spu/PlaySound.s -------------------------------------------------------------------------------- /asm/nonmatchings/spu/func_8005637C.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/nonmatchings/spu/func_8005637C.s -------------------------------------------------------------------------------- /asm/order_table.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/order_table.s -------------------------------------------------------------------------------- /asm/particle_alloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/particle_alloc.s -------------------------------------------------------------------------------- /asm/psyq.libsn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/psyq.libsn.s -------------------------------------------------------------------------------- /asm/psyq.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/psyq.s -------------------------------------------------------------------------------- /asm/renderers/r_cyclorama.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/renderers/r_cyclorama.s -------------------------------------------------------------------------------- /asm/renderers/r_environment.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/renderers/r_environment.s -------------------------------------------------------------------------------- /asm/renderers/r_flame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/renderers/r_flame.s -------------------------------------------------------------------------------- /asm/renderers/r_moby.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/renderers/r_moby.s -------------------------------------------------------------------------------- /asm/renderers/r_particles.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/renderers/r_particles.s -------------------------------------------------------------------------------- /asm/renderers/r_pete.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/renderers/r_pete.s -------------------------------------------------------------------------------- /asm/renderers/r_shadows.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/renderers/r_shadows.s -------------------------------------------------------------------------------- /asm/structs.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asm/system_time.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/asm/system_time.s -------------------------------------------------------------------------------- /assets/decode_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/assets/decode_image.py -------------------------------------------------------------------------------- /assets/encode_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/assets/encode_image.py -------------------------------------------------------------------------------- /assets/save_header.databin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/assets/save_header.databin.bin -------------------------------------------------------------------------------- /assets/sony_text.databin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/assets/sony_text.databin.bin -------------------------------------------------------------------------------- /assets/sony_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/assets/sony_text.png -------------------------------------------------------------------------------- /docker_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/docker_env.sh -------------------------------------------------------------------------------- /include/42CC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/42CC4.h -------------------------------------------------------------------------------- /include/4BEF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/4BEF8.h -------------------------------------------------------------------------------- /include/balloonist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/balloonist.h -------------------------------------------------------------------------------- /include/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/buffers.h -------------------------------------------------------------------------------- /include/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/camera.h -------------------------------------------------------------------------------- /include/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/cd.h -------------------------------------------------------------------------------- /include/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/cheats.h -------------------------------------------------------------------------------- /include/checkpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/checkpoint.h -------------------------------------------------------------------------------- /include/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/collision.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/common.h -------------------------------------------------------------------------------- /include/cyclorama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/cyclorama.h -------------------------------------------------------------------------------- /include/dragon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/dragon.h -------------------------------------------------------------------------------- /include/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/environment.h -------------------------------------------------------------------------------- /include/fairy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/fairy.h -------------------------------------------------------------------------------- /include/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/gamepad.h -------------------------------------------------------------------------------- /include/gamestates/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/gamestates/draw.h -------------------------------------------------------------------------------- /include/gamestates/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/gamestates/init.h -------------------------------------------------------------------------------- /include/gamestates/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/gamestates/update.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/gte_macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/gte_macros.inc -------------------------------------------------------------------------------- /include/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/hud.h -------------------------------------------------------------------------------- /include/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/images.h -------------------------------------------------------------------------------- /include/include_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/include_asm.h -------------------------------------------------------------------------------- /include/initialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/initialization.h -------------------------------------------------------------------------------- /include/loaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/loaders.h -------------------------------------------------------------------------------- /include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/macro.inc -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/math.h -------------------------------------------------------------------------------- /include/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/matrix.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/moby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/moby.h -------------------------------------------------------------------------------- /include/moby_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/moby_helpers.h -------------------------------------------------------------------------------- /include/moby_lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/moby_lists.h -------------------------------------------------------------------------------- /include/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/music.h -------------------------------------------------------------------------------- /include/overlay_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/overlay_pointers.h -------------------------------------------------------------------------------- /include/overlays/moby_spawn.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/overlays/moby_spawn.inc.h -------------------------------------------------------------------------------- /include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/rand.h -------------------------------------------------------------------------------- /include/renderers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/renderers.h -------------------------------------------------------------------------------- /include/save_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/save_file.h -------------------------------------------------------------------------------- /include/sony_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/sony_image.h -------------------------------------------------------------------------------- /include/sound_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/sound_table.h -------------------------------------------------------------------------------- /include/special_surfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/special_surfaces.h -------------------------------------------------------------------------------- /include/specular_and_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/specular_and_metal.h -------------------------------------------------------------------------------- /include/spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/spu.h -------------------------------------------------------------------------------- /include/spyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/spyro.h -------------------------------------------------------------------------------- /include/titlescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/titlescreen.h -------------------------------------------------------------------------------- /include/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/variables.h -------------------------------------------------------------------------------- /include/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/vector.h -------------------------------------------------------------------------------- /include/wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/include/wad.h -------------------------------------------------------------------------------- /overlays.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/overlays.ld -------------------------------------------------------------------------------- /progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/progress.md -------------------------------------------------------------------------------- /progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/progress.py -------------------------------------------------------------------------------- /psx.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/psx.ld -------------------------------------------------------------------------------- /psyq/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/readme.md -------------------------------------------------------------------------------- /sha256sum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/sha256sum.txt -------------------------------------------------------------------------------- /src/4BEF8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/4BEF8.c -------------------------------------------------------------------------------- /src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/camera.c -------------------------------------------------------------------------------- /src/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/cd.c -------------------------------------------------------------------------------- /src/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/cheats.c -------------------------------------------------------------------------------- /src/checkpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/checkpoint.c -------------------------------------------------------------------------------- /src/completion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/completion.c -------------------------------------------------------------------------------- /src/crash_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/crash_demo.c -------------------------------------------------------------------------------- /src/cyclorama.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | INCLUDE_ASM("asm/nonmatchings/cyclorama", func_80050BD0); 4 | -------------------------------------------------------------------------------- /src/environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/environment.c -------------------------------------------------------------------------------- /src/gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/gamepad.c -------------------------------------------------------------------------------- /src/gamestates/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/gamestates/draw.c -------------------------------------------------------------------------------- /src/gamestates/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/gamestates/init.c -------------------------------------------------------------------------------- /src/gamestates/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/gamestates/update.c -------------------------------------------------------------------------------- /src/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/hud.c -------------------------------------------------------------------------------- /src/initialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/initialization.c -------------------------------------------------------------------------------- /src/loaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/loaders.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/main.c -------------------------------------------------------------------------------- /src/moby_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/moby_helpers.c -------------------------------------------------------------------------------- /src/moby_interpolation_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/moby_interpolation_check.c -------------------------------------------------------------------------------- /src/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/music.c -------------------------------------------------------------------------------- /src/overlay_pointers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlay_pointers.c -------------------------------------------------------------------------------- /src/overlays/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/credits.c -------------------------------------------------------------------------------- /src/overlays/level_10/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_10/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_10/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_10/moby.c -------------------------------------------------------------------------------- /src/overlays/level_10/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_10/particle.c -------------------------------------------------------------------------------- /src/overlays/level_10/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_10_80088620(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_11/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_11/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_11/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_11/moby.c -------------------------------------------------------------------------------- /src/overlays/level_11/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_11/particle.c -------------------------------------------------------------------------------- /src/overlays/level_11/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_11_8008A3B8(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_12/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_12/moby.c -------------------------------------------------------------------------------- /src/overlays/level_12/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_12/particle.c -------------------------------------------------------------------------------- /src/overlays/level_12/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_12_80085594(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_13/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_13/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_13/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_13/moby.c -------------------------------------------------------------------------------- /src/overlays/level_13/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_13/particle.c -------------------------------------------------------------------------------- /src/overlays/level_13/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_13_80089ECC(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_14/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_14/moby.c -------------------------------------------------------------------------------- /src/overlays/level_14/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_14/particle.c -------------------------------------------------------------------------------- /src/overlays/level_14/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_14_80084A10(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_15/flight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_15/flight.c -------------------------------------------------------------------------------- /src/overlays/level_15/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_15/moby.c -------------------------------------------------------------------------------- /src/overlays/level_15/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_15/particle.c -------------------------------------------------------------------------------- /src/overlays/level_15/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_15_80084ED0(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_20/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_20/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_20/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_20/moby.c -------------------------------------------------------------------------------- /src/overlays/level_20/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_20/particle.c -------------------------------------------------------------------------------- /src/overlays/level_20/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_20_8008CFA4(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_21/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_21/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_21/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_21/moby.c -------------------------------------------------------------------------------- /src/overlays/level_21/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_21/particle.c -------------------------------------------------------------------------------- /src/overlays/level_21/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_21_8008D600(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_22/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_22/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_22/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_22/moby.c -------------------------------------------------------------------------------- /src/overlays/level_22/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_22/particle.c -------------------------------------------------------------------------------- /src/overlays/level_22/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_22_8008BAF8(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_23/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_23/moby.c -------------------------------------------------------------------------------- /src/overlays/level_23/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_23/particle.c -------------------------------------------------------------------------------- /src/overlays/level_23/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_23_80086260(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_24/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_24/moby.c -------------------------------------------------------------------------------- /src/overlays/level_24/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_24/particle.c -------------------------------------------------------------------------------- /src/overlays/level_24/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_24_80087210(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_25/flight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_25/flight.c -------------------------------------------------------------------------------- /src/overlays/level_25/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_25/moby.c -------------------------------------------------------------------------------- /src/overlays/level_25/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_25/particle.c -------------------------------------------------------------------------------- /src/overlays/level_25/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_25_80083BF0(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_30/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_30/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_30/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_30/moby.c -------------------------------------------------------------------------------- /src/overlays/level_30/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_30/particle.c -------------------------------------------------------------------------------- /src/overlays/level_30/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_30_8008E608(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_31/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_31/moby.c -------------------------------------------------------------------------------- /src/overlays/level_31/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_31/particle.c -------------------------------------------------------------------------------- /src/overlays/level_31/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_31_8008DEC0(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_32/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_32/moby.c -------------------------------------------------------------------------------- /src/overlays/level_32/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_32/particle.c -------------------------------------------------------------------------------- /src/overlays/level_32/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_32_8008C73C(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_33/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_33/moby.c -------------------------------------------------------------------------------- /src/overlays/level_33/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_33/particle.c -------------------------------------------------------------------------------- /src/overlays/level_33/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_33_8008A8A0(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_34/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_34/moby.c -------------------------------------------------------------------------------- /src/overlays/level_34/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_34/particle.c -------------------------------------------------------------------------------- /src/overlays/level_34/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_34_8008749C(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_35/flight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_35/flight.c -------------------------------------------------------------------------------- /src/overlays/level_35/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_35/moby.c -------------------------------------------------------------------------------- /src/overlays/level_35/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_35/particle.c -------------------------------------------------------------------------------- /src/overlays/level_35/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_35_80084390(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_40/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_40/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_40/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_40/moby.c -------------------------------------------------------------------------------- /src/overlays/level_40/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_40/particle.c -------------------------------------------------------------------------------- /src/overlays/level_40/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_40_8008AB70(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_41/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_41/moby.c -------------------------------------------------------------------------------- /src/overlays/level_41/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_41/particle.c -------------------------------------------------------------------------------- /src/overlays/level_41/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_41_80087944(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_42/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_42/moby.c -------------------------------------------------------------------------------- /src/overlays/level_42/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_42/particle.c -------------------------------------------------------------------------------- /src/overlays/level_42/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_42_80087130(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_43/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_43/moby.c -------------------------------------------------------------------------------- /src/overlays/level_43/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_43/particle.c -------------------------------------------------------------------------------- /src/overlays/level_43/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_43_80089848(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_44/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_44/moby.c -------------------------------------------------------------------------------- /src/overlays/level_44/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_44/particle.c -------------------------------------------------------------------------------- /src/overlays/level_44/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_44_8008A69C(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_45/flight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_45/flight.c -------------------------------------------------------------------------------- /src/overlays/level_45/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_45/moby.c -------------------------------------------------------------------------------- /src/overlays/level_45/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_45/particle.c -------------------------------------------------------------------------------- /src/overlays/level_45/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_45_80084844(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_50/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_50/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_50/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_50/moby.c -------------------------------------------------------------------------------- /src/overlays/level_50/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_50/particle.c -------------------------------------------------------------------------------- /src/overlays/level_50/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_50_8008BB38(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_51/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_51/moby.c -------------------------------------------------------------------------------- /src/overlays/level_51/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_51/particle.c -------------------------------------------------------------------------------- /src/overlays/level_51/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_51_800880D4(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_52/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_52/moby.c -------------------------------------------------------------------------------- /src/overlays/level_52/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_52/particle.c -------------------------------------------------------------------------------- /src/overlays/level_52/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_52_8008771C(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_53/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_53/moby.c -------------------------------------------------------------------------------- /src/overlays/level_53/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_53/particle.c -------------------------------------------------------------------------------- /src/overlays/level_53/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_53_80089820(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_54/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_54/moby.c -------------------------------------------------------------------------------- /src/overlays/level_54/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_54/particle.c -------------------------------------------------------------------------------- /src/overlays/level_54/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_54_80086348(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_55/flight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_55/flight.c -------------------------------------------------------------------------------- /src/overlays/level_55/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_55/moby.c -------------------------------------------------------------------------------- /src/overlays/level_55/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_55/particle.c -------------------------------------------------------------------------------- /src/overlays/level_55/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_55_80084934(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_60/balloonist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_60/balloonist.c -------------------------------------------------------------------------------- /src/overlays/level_60/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_60/moby.c -------------------------------------------------------------------------------- /src/overlays/level_60/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_60/particle.c -------------------------------------------------------------------------------- /src/overlays/level_60/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_60_80085CE0(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_61/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_61/moby.c -------------------------------------------------------------------------------- /src/overlays/level_61/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_61/particle.c -------------------------------------------------------------------------------- /src/overlays/level_61/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_61_80088668(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_62/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_62/moby.c -------------------------------------------------------------------------------- /src/overlays/level_62/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_62/particle.c -------------------------------------------------------------------------------- /src/overlays/level_62/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_62_80086004(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_63/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_63/moby.c -------------------------------------------------------------------------------- /src/overlays/level_63/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_63/particle.c -------------------------------------------------------------------------------- /src/overlays/level_63/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_63_800854B4(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/level_64/moby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_64/moby.c -------------------------------------------------------------------------------- /src/overlays/level_64/particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/level_64/particle.c -------------------------------------------------------------------------------- /src/overlays/level_64/terminator.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | 3 | void func_level_64_80086264(void) { 4 | } 5 | -------------------------------------------------------------------------------- /src/overlays/titlescreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/overlays/titlescreen.c -------------------------------------------------------------------------------- /src/pete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/pete.c -------------------------------------------------------------------------------- /src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/rand.c -------------------------------------------------------------------------------- /src/save_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/save_file.c -------------------------------------------------------------------------------- /src/special_surfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/special_surfaces.c -------------------------------------------------------------------------------- /src/specular_and_metal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/specular_and_metal.c -------------------------------------------------------------------------------- /src/spu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/src/spu.c -------------------------------------------------------------------------------- /tools/fix_jtbl_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/tools/fix_jtbl_align.py -------------------------------------------------------------------------------- /tools/fix_str_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/tools/fix_str_align.py -------------------------------------------------------------------------------- /tools/gcc2.7.2/cc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/tools/gcc2.7.2/cc1 -------------------------------------------------------------------------------- /tools/gcc2.7.2/gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/tools/gcc2.7.2/gcc -------------------------------------------------------------------------------- /tools/remove_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMobyCollective/spyro-1/HEAD/tools/remove_sections.py --------------------------------------------------------------------------------