├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .gitignore ├── CHANGES ├── Dockerfile ├── Doxyfile ├── Jenkinsfile ├── Makefile ├── Makefile.split ├── README.md ├── actors ├── amp │ ├── anims │ │ ├── animation.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bird │ ├── anims │ │ ├── anim_050008D0.inc.c │ │ ├── anim_050009D0.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── blargg │ ├── anims │ │ ├── anim_05006070.inc.c │ │ ├── anim_05006154.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── blue_coin_switch │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── blue_fish │ ├── anims │ │ ├── anim_0301C298.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bobomb │ ├── anims │ │ ├── anim_080237FC.inc.c │ │ ├── anim_08023954.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bomb │ ├── geo.inc.c │ └── model.inc.c ├── boo │ ├── geo.inc.c │ └── model.inc.c ├── boo_castle │ ├── geo.inc.c │ └── model.inc.c ├── book │ ├── geo.inc.c │ └── model.inc.c ├── bookend │ ├── anims │ │ ├── anim_050023F4.inc.c │ │ ├── anim_05002510.inc.c │ │ ├── anim_05002528.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bowling_ball │ └── geo.inc.c ├── bowser │ ├── anims │ │ ├── anim_060445EC.inc.c │ │ ├── anim_060453C8.inc.c │ │ ├── anim_06045D28.inc.c │ │ ├── anim_0604671C.inc.c │ │ ├── anim_0604675C.inc.c │ │ ├── anim_06048200.inc.c │ │ ├── anim_06049880.inc.c │ │ ├── anim_0604A8E4.inc.c │ │ ├── anim_0604B178.inc.c │ │ ├── anim_0604B8CC.inc.c │ │ ├── anim_0604D184.inc.c │ │ ├── anim_0604E5A0.inc.c │ │ ├── anim_0604F030.inc.c │ │ ├── anim_0604FF4C.inc.c │ │ ├── anim_06050530.inc.c │ │ ├── anim_060514E8.inc.c │ │ ├── anim_06051C68.inc.c │ │ ├── anim_06052680.inc.c │ │ ├── anim_06052D94.inc.c │ │ ├── anim_060534F4.inc.c │ │ ├── anim_06053B8C.inc.c │ │ ├── anim_06054290.inc.c │ │ ├── anim_06054950.inc.c │ │ ├── anim_06055210.inc.c │ │ ├── anim_06055984.inc.c │ │ ├── anim_06056774.inc.c │ │ ├── anim_06057678.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── flames_data.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bowser_flame │ ├── geo.inc.c │ └── model.inc.c ├── bowser_key │ ├── anims │ │ ├── anim_course_exit.inc.c │ │ ├── anim_unlock_door.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── breakable_box │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bub │ ├── anims │ │ ├── anim_0601233C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── bubba │ ├── geo.inc.c │ └── model.inc.c ├── bubble │ ├── geo.inc.c │ └── model.inc.c ├── bullet_bill │ ├── geo.inc.c │ └── model.inc.c ├── bully │ ├── anims │ │ ├── anim_050042A4.inc.c │ │ ├── anim_050043D8.inc.c │ │ ├── anim_05004598.inc.c │ │ ├── anim_050046F4.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── burn_smoke │ ├── geo.inc.c │ └── model.inc.c ├── butterfly │ ├── anims │ │ ├── anim_030055B0.inc.c │ │ ├── anim_03005698.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── cannon_barrel │ ├── geo.inc.c │ └── model.inc.c ├── cannon_base │ ├── geo.inc.c │ └── model.inc.c ├── cannon_lid │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── capswitch │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chain_ball │ ├── geo.inc.c │ └── model.inc.c ├── chain_chomp │ ├── anims │ │ ├── anim_06025160.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chair │ ├── anims │ │ ├── anim_0500576C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── checkerboard_platform │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chillychief │ ├── anims │ │ ├── anim_060032EC.inc.c │ │ ├── anim_06003420.inc.c │ │ ├── anim_060035E0.inc.c │ │ ├── anim_0600373C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── chuckya │ ├── anims │ │ ├── anim_0800AF68.inc.c │ │ ├── anim_0800B1A8.inc.c │ │ ├── anim_0800B4A8.inc.c │ │ ├── anim_0800B9F8.inc.c │ │ ├── anim_0800BBEC.inc.c │ │ ├── anim_0800C058.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── clam_shell │ ├── anims │ │ ├── anim_05001654.inc.c │ │ ├── anim_0500172C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── coin │ ├── geo.inc.c │ └── model.inc.c ├── common0.c ├── common0.h ├── common0_geo.c ├── common1.c ├── common1.h ├── common1_geo.c ├── cyan_fish │ ├── anims │ │ ├── anim_0600E24C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── dirt │ ├── geo.inc.c │ └── model.inc.c ├── door │ ├── anims │ │ ├── anim_03015208.inc.c │ │ ├── anim_03015440.inc.c │ │ ├── anim_03015458.inc.c │ │ ├── anim_03015690.inc.c │ │ ├── anim_030156A8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── dorrie │ ├── anims │ │ ├── anim_0600E18C.inc.c │ │ ├── anim_0600E9BC.inc.c │ │ ├── anim_0600F620.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── exclamation_box │ ├── geo.inc.c │ └── model.inc.c ├── exclamation_box_outline │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── explosion │ ├── geo.inc.c │ └── model.inc.c ├── eyerok │ ├── anims │ │ ├── anim_0500D270.inc.c │ │ ├── anim_0500DF50.inc.c │ │ ├── anim_0500E1D8.inc.c │ │ ├── anim_0500E99C.inc.c │ │ ├── anim_0500F3D8.inc.c │ │ ├── anim_0500F3F0.inc.c │ │ ├── anim_0500FCCC.inc.c │ │ ├── anim_050116CC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── flame │ ├── geo.inc.c │ └── model.inc.c ├── flyguy │ ├── anims │ │ ├── anim_08011A4C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── fwoosh │ ├── geo.inc.c │ └── model.inc.c ├── goomba │ ├── anims │ │ ├── anim_0801DA34.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── group0.c ├── group0.h ├── group0_geo.c ├── group1.c ├── group1.h ├── group10.c ├── group10.h ├── group10_geo.c ├── group11.c ├── group11.h ├── group11_geo.c ├── group12.c ├── group12.h ├── group12_geo.c ├── group13.c ├── group13.h ├── group13_geo.c ├── group14.c ├── group14.h ├── group14_geo.c ├── group15.c ├── group15.h ├── group15_geo.c ├── group16.c ├── group16.h ├── group16_geo.c ├── group17.c ├── group17.h ├── group17_geo.c ├── group1_geo.c ├── group2.c ├── group2.h ├── group2_geo.c ├── group3.c ├── group3.h ├── group3_geo.c ├── group4.c ├── group4.h ├── group4_geo.c ├── group5.c ├── group5.h ├── group5_geo.c ├── group6.c ├── group6.h ├── group6_geo.c ├── group7.c ├── group7.h ├── group7_geo.c ├── group8.c ├── group8.h ├── group8_geo.c ├── group9.c ├── group9.h ├── group9_geo.c ├── haunted_cage │ ├── geo.inc.c │ └── model.inc.c ├── heart │ ├── geo.inc.c │ └── model.inc.c ├── heave_ho │ ├── anims │ │ ├── anim_05014F28.inc.c │ │ ├── anim_05015118.inc.c │ │ ├── anim_05015334.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── hoot │ ├── anims │ │ ├── anim_050053EC.inc.c │ │ ├── anim_05005750.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── impact_ring │ ├── geo.inc.c │ └── model.inc.c ├── impact_smoke │ ├── geo.inc.c │ └── model.inc.c ├── king_bobomb │ ├── anims │ │ ├── anim_0500BDFC.inc.c │ │ ├── anim_0500C2AC.inc.c │ │ ├── anim_0500C520.inc.c │ │ ├── anim_0500C774.inc.c │ │ ├── anim_0500CFCC.inc.c │ │ ├── anim_0500D5B0.inc.c │ │ ├── anim_0500D978.inc.c │ │ ├── anim_0500DDD8.inc.c │ │ ├── anim_0500E10C.inc.c │ │ ├── anim_0500F078.inc.c │ │ ├── anim_0500F6C8.inc.c │ │ ├── anim_0500FE18.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── klepto │ ├── anims │ │ ├── anim_05005E44.inc.c │ │ ├── anim_05007574.inc.c │ │ ├── anim_050079B0.inc.c │ │ ├── anim_05007E34.inc.c │ │ ├── anim_050086C0.inc.c │ │ ├── anim_05008A18.inc.c │ │ ├── anim_05008CE4.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── koopa │ ├── anims │ │ ├── anim_0600CC24.inc.c │ │ ├── anim_0600CFB8.inc.c │ │ ├── anim_0600D518.inc.c │ │ ├── anim_0600D804.inc.c │ │ ├── anim_0600DD90.inc.c │ │ ├── anim_0600E32C.inc.c │ │ ├── anim_0600E928.inc.c │ │ ├── anim_0600F3EC.inc.c │ │ ├── anim_0600FB1C.inc.c │ │ ├── anim_06010258.inc.c │ │ ├── anim_06010634.inc.c │ │ ├── anim_06010E48.inc.c │ │ ├── anim_060110D8.inc.c │ │ ├── anim_0601134C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── koopa_flag │ ├── anims │ │ ├── anim_06001010.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── koopa_shell │ ├── geo.inc.c │ └── model.inc.c ├── lakitu_cameraman │ ├── anims │ │ ├── anim_060058E0.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── lakitu_enemy │ ├── anims │ │ ├── anim_05013EDC.inc.c │ │ ├── anim_050140E8.inc.c │ │ ├── anim_050142E0.inc.c │ │ ├── anim_050144BC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── leaves │ ├── geo.inc.c │ └── model.inc.c ├── mad_piano │ ├── anims │ │ ├── anim_05009A04.inc.c │ │ ├── anim_05009AFC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── manta │ ├── anims │ │ ├── anim_05008CFC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── mario │ ├── geo.inc.c │ └── model.inc.c ├── mario_cap │ ├── geo.inc.c │ └── model.inc.c ├── metal_box │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── mips │ ├── anims │ │ ├── anim_06013248.inc.c │ │ ├── anim_0601369C.inc.c │ │ ├── anim_060139F8.inc.c │ │ ├── anim_06014B94.inc.c │ │ ├── anim_0601561C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── mist │ ├── geo.inc.c │ └── model.inc.c ├── moneybag │ ├── anims │ │ ├── anim_06005AD8.inc.c │ │ ├── anim_06005BEC.inc.c │ │ ├── anim_06005C98.inc.c │ │ ├── anim_06005D3C.inc.c │ │ ├── anim_06005E44.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── monty_mole │ ├── anims │ │ ├── anim_05004FEC.inc.c │ │ ├── anim_0500527C.inc.c │ │ ├── anim_050054B0.inc.c │ │ ├── anim_050062B0.inc.c │ │ ├── anim_050065C0.inc.c │ │ ├── anim_050065D8.inc.c │ │ ├── anim_05006880.inc.c │ │ ├── anim_05006B10.inc.c │ │ ├── anim_05006DB8.inc.c │ │ ├── anim_05007230.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── monty_mole_hole │ └── model.inc.c ├── mr_i_eyeball │ ├── geo.inc.c │ └── model.inc.c ├── mr_i_iris │ ├── geo.inc.c │ └── model.inc.c ├── mushroom_1up │ ├── geo.inc.c │ └── model.inc.c ├── number │ └── geo.inc.c ├── peach │ ├── anims │ │ ├── anim_0500C638.inc.c │ │ ├── anim_0500E6B4.inc.c │ │ ├── anim_0500ED94.inc.c │ │ ├── anim_0500F474.inc.c │ │ ├── anim_0500FE84.inc.c │ │ ├── anim_05011050.inc.c │ │ ├── anim_05012F40.inc.c │ │ ├── anim_05015468.inc.c │ │ ├── anim_05016798.inc.c │ │ ├── anim_05018664.inc.c │ │ ├── anim_0501B328.inc.c │ │ ├── anim_0501C404.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── pebble │ └── model.inc.c ├── penguin │ ├── anims │ │ ├── anim_050079E4.inc.c │ │ ├── anim_05007DCC.inc.c │ │ ├── anim_050087C0.inc.c │ │ ├── anim_05008B5C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── piranha_plant │ ├── anims │ │ ├── anim_06017C38.inc.c │ │ ├── anim_06017D88.inc.c │ │ ├── anim_060187B0.inc.c │ │ ├── anim_06018BA8.inc.c │ │ ├── anim_06019854.inc.c │ │ ├── anim_0601A014.inc.c │ │ ├── anim_0601AAE4.inc.c │ │ ├── anim_0601AF34.inc.c │ │ ├── anim_0601B634.inc.c │ │ ├── anim_0601C304.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── pokey │ ├── geo.inc.c │ └── model.inc.c ├── poundable_pole │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── power_meter │ └── model.inc.c ├── purple_switch │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── sand │ └── model.inc.c ├── scuttlebug │ ├── anims │ │ ├── anim_0601504C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── seaweed │ ├── anims │ │ ├── anim_0600A4BC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── skeeter │ ├── anims │ │ ├── anim_06005D44.inc.c │ │ ├── anim_06006B70.inc.c │ │ ├── anim_060071E0.inc.c │ │ ├── anim_06007DC8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── small_key │ ├── geo.inc.c │ └── model.inc.c ├── smoke │ └── model.inc.c ├── snowman │ ├── anims │ │ ├── anim_0500CED8.inc.c │ │ ├── anim_0500D100.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── snufit │ ├── geo.inc.c │ └── model.inc.c ├── sparkle │ ├── geo.inc.c │ └── model.inc.c ├── sparkle_animation │ ├── geo.inc.c │ └── model.inc.c ├── spindrift │ ├── anims │ │ ├── anim_050006AC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── spiny │ ├── anims │ │ ├── anim_05016E94.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── spiny_egg │ ├── anims │ │ ├── anim_050157CC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── springboard │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── star │ ├── geo.inc.c │ └── model.inc.c ├── stomp_smoke │ ├── geo.inc.c │ └── model.inc.c ├── sushi │ ├── anims │ │ ├── anim_0500AE3C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── swoop │ ├── anims │ │ ├── anim_06006E88.inc.c │ │ ├── anim_060070B8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── test_platform │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── thwomp │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── toad │ ├── anims │ │ ├── anim_06008F7C.inc.c │ │ ├── anim_06009310.inc.c │ │ ├── anim_060099F0.inc.c │ │ ├── anim_0600A0D0.inc.c │ │ ├── anim_0600B66C.inc.c │ │ ├── anim_0600CE78.inc.c │ │ ├── anim_0600E414.inc.c │ │ ├── anim_0600FB40.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── tornado │ ├── geo.inc.c │ └── model.inc.c ├── transparent_star │ ├── geo.inc.c │ └── model.inc.c ├── treasure_chest │ ├── geo.inc.c │ └── model.inc.c ├── tree │ ├── geo.inc.c │ └── model.inc.c ├── ukiki │ ├── anims │ │ ├── anim_0500D658.inc.c │ │ ├── anim_0500DC80.inc.c │ │ ├── anim_0500DDEC.inc.c │ │ ├── anim_0500EACC.inc.c │ │ ├── anim_0500EEA8.inc.c │ │ ├── anim_0500F530.inc.c │ │ ├── anim_0500FC84.inc.c │ │ ├── anim_0501006C.inc.c │ │ ├── anim_050103F4.inc.c │ │ ├── anim_05012ABC.inc.c │ │ ├── anim_05014BE4.inc.c │ │ ├── anim_050153C4.inc.c │ │ ├── anim_0501576C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── unagi │ ├── anims │ │ ├── anim_0500FBF4.inc.c │ │ ├── anim_05010488.inc.c │ │ ├── anim_05010B54.inc.c │ │ ├── anim_05011488.inc.c │ │ ├── anim_05011890.inc.c │ │ ├── anim_05011D40.inc.c │ │ ├── anim_0501280C.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── walk_smoke │ ├── geo.inc.c │ └── model.inc.c ├── warp_collision │ └── collision.inc.c ├── warp_pipe │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── water_bubble │ ├── geo.inc.c │ └── model.inc.c ├── water_mine │ ├── geo.inc.c │ └── model.inc.c ├── water_ring │ ├── anims │ │ ├── anim_06013F64.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── water_splash │ ├── geo.inc.c │ └── model.inc.c ├── water_wave │ ├── geo.inc.c │ └── model.inc.c ├── whirlpool │ └── model.inc.c ├── white_particle │ ├── geo.inc.c │ └── model.inc.c ├── white_particle_small │ └── model.inc.c ├── whomp │ ├── anims │ │ ├── anim_060202DC.inc.c │ │ ├── anim_060209EC.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── wiggler_body │ ├── anims │ │ ├── anim_0500C760.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── wiggler_head │ ├── anims │ │ ├── anim_0500EC74.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── wooden_signpost │ ├── collision.inc.c │ ├── geo.inc.c │ └── model.inc.c ├── yellow_sphere │ ├── geo.inc.c │ └── model.inc.c ├── yellow_sphere_small │ ├── geo.inc.c │ └── model.inc.c ├── yoshi │ ├── anims │ │ ├── anim_050233A4.inc.c │ │ ├── anim_05023E4C.inc.c │ │ ├── anim_050240E8.inc.c │ │ ├── data.inc.c │ │ └── table.inc.c │ ├── geo.inc.c │ └── model.inc.c └── yoshi_egg │ ├── geo.inc.c │ └── model.inc.c ├── asm ├── boot.s ├── decompress.s ├── entry.s └── rom_header.s ├── assets.json ├── assets ├── anims │ ├── anim_00.inc.c │ ├── anim_01_02.inc.c │ ├── anim_03.inc.c │ ├── anim_04.inc.c │ ├── anim_05.inc.c │ ├── anim_06.inc.c │ ├── anim_07_08.inc.c │ ├── anim_09.inc.c │ ├── anim_0A.inc.c │ ├── anim_0B_0C.inc.c │ ├── anim_0D.inc.c │ ├── anim_0E.inc.c │ ├── anim_0F_10.inc.c │ ├── anim_11.inc.c │ ├── anim_12.inc.c │ ├── anim_13.inc.c │ ├── anim_14.inc.c │ ├── anim_15.inc.c │ ├── anim_16.inc.c │ ├── anim_17.inc.c │ ├── anim_18.inc.c │ ├── anim_19.inc.c │ ├── anim_1A.inc.c │ ├── anim_1B.inc.c │ ├── anim_1C.inc.c │ ├── anim_1D.inc.c │ ├── anim_1E.inc.c │ ├── anim_1F.inc.c │ ├── anim_20.inc.c │ ├── anim_21.inc.c │ ├── anim_22.inc.c │ ├── anim_23.inc.c │ ├── anim_24.inc.c │ ├── anim_25.inc.c │ ├── anim_26.inc.c │ ├── anim_27.inc.c │ ├── anim_28.inc.c │ ├── anim_29.inc.c │ ├── anim_2A.inc.c │ ├── anim_2B.inc.c │ ├── anim_2C_2D.inc.c │ ├── anim_2E.inc.c │ ├── anim_2F.inc.c │ ├── anim_30.inc.c │ ├── anim_31.inc.c │ ├── anim_32.inc.c │ ├── anim_33.inc.c │ ├── anim_34.inc.c │ ├── anim_35.inc.c │ ├── anim_36.inc.c │ ├── anim_37.inc.c │ ├── anim_38.inc.c │ ├── anim_39.inc.c │ ├── anim_3A.inc.c │ ├── anim_3B.inc.c │ ├── anim_3C_3D.inc.c │ ├── anim_3E.inc.c │ ├── anim_3F.inc.c │ ├── anim_40.inc.c │ ├── anim_41.inc.c │ ├── anim_42.inc.c │ ├── anim_43.inc.c │ ├── anim_44.inc.c │ ├── anim_45_46.inc.c │ ├── anim_47.inc.c │ ├── anim_48.inc.c │ ├── anim_49.inc.c │ ├── anim_4A.inc.c │ ├── anim_4B.inc.c │ ├── anim_4C.inc.c │ ├── anim_4D_4E.inc.c │ ├── anim_4F.inc.c │ ├── anim_50.inc.c │ ├── anim_51.inc.c │ ├── anim_52.inc.c │ ├── anim_53.inc.c │ ├── anim_54.inc.c │ ├── anim_55.inc.c │ ├── anim_56_57.inc.c │ ├── anim_58.inc.c │ ├── anim_59.inc.c │ ├── anim_5A.inc.c │ ├── anim_5B.inc.c │ ├── anim_5C.inc.c │ ├── anim_5D.inc.c │ ├── anim_5E.inc.c │ ├── anim_5F.inc.c │ ├── anim_60.inc.c │ ├── anim_61.inc.c │ ├── anim_62.inc.c │ ├── anim_63.inc.c │ ├── anim_64.inc.c │ ├── anim_65.inc.c │ ├── anim_66.inc.c │ ├── anim_67.inc.c │ ├── anim_68.inc.c │ ├── anim_69.inc.c │ ├── anim_6A.inc.c │ ├── anim_6B.inc.c │ ├── anim_6C.inc.c │ ├── anim_6D.inc.c │ ├── anim_6E.inc.c │ ├── anim_6F_70.inc.c │ ├── anim_71.inc.c │ ├── anim_72_73.inc.c │ ├── anim_74.inc.c │ ├── anim_75.inc.c │ ├── anim_76.inc.c │ ├── anim_77.inc.c │ ├── anim_78.inc.c │ ├── anim_79.inc.c │ ├── anim_7A.inc.c │ ├── anim_7B.inc.c │ ├── anim_7C.inc.c │ ├── anim_7D.inc.c │ ├── anim_7E.inc.c │ ├── anim_7F.inc.c │ ├── anim_80.inc.c │ ├── anim_81.inc.c │ ├── anim_82.inc.c │ ├── anim_83.inc.c │ ├── anim_84.inc.c │ ├── anim_85.inc.c │ ├── anim_86.inc.c │ ├── anim_87.inc.c │ ├── anim_88_89.inc.c │ ├── anim_8A.inc.c │ ├── anim_8B.inc.c │ ├── anim_8C.inc.c │ ├── anim_8D.inc.c │ ├── anim_8E_8F.inc.c │ ├── anim_90.inc.c │ ├── anim_91.inc.c │ ├── anim_92.inc.c │ ├── anim_93.inc.c │ ├── anim_94.inc.c │ ├── anim_95.inc.c │ ├── anim_96.inc.c │ ├── anim_97.inc.c │ ├── anim_98.inc.c │ ├── anim_99.inc.c │ ├── anim_9A.inc.c │ ├── anim_9B.inc.c │ ├── anim_9C.inc.c │ ├── anim_9D.inc.c │ ├── anim_9E.inc.c │ ├── anim_9F.inc.c │ ├── anim_A0.inc.c │ ├── anim_A1.inc.c │ ├── anim_A2.inc.c │ ├── anim_A3.inc.c │ ├── anim_A4.inc.c │ ├── anim_A5.inc.c │ ├── anim_A6.inc.c │ ├── anim_A7.inc.c │ ├── anim_A8.inc.c │ ├── anim_A9.inc.c │ ├── anim_AA.inc.c │ ├── anim_AB.inc.c │ ├── anim_AC.inc.c │ ├── anim_AD.inc.c │ ├── anim_AE.inc.c │ ├── anim_AF.inc.c │ ├── anim_B0.inc.c │ ├── anim_B1.inc.c │ ├── anim_B2.inc.c │ ├── anim_B3.inc.c │ ├── anim_B4.inc.c │ ├── anim_B5_B6.inc.c │ ├── anim_B7.inc.c │ ├── anim_B8.inc.c │ ├── anim_B9.inc.c │ ├── anim_BA.inc.c │ ├── anim_BB.inc.c │ ├── anim_BC_BD.inc.c │ ├── anim_BE.inc.c │ ├── anim_BF.inc.c │ ├── anim_C0.inc.c │ ├── anim_C1.inc.c │ ├── anim_C2.inc.c │ ├── anim_C3.inc.c │ ├── anim_C4.inc.c │ ├── anim_C5.inc.c │ ├── anim_C6.inc.c │ ├── anim_C7.inc.c │ ├── anim_C8.inc.c │ ├── anim_C9.inc.c │ ├── anim_CA.inc.c │ ├── anim_CB_CC.inc.c │ ├── anim_CD.inc.c │ ├── anim_CE.inc.c │ ├── anim_CF.inc.c │ └── anim_D0.inc.c └── demo_data.json ├── bin ├── cave.c ├── debug_level_select.c ├── effect.c ├── eu │ ├── translation_de.c │ ├── translation_en.c │ └── translation_fr.c ├── fire.c ├── generic.c ├── grass.c ├── inside.c ├── machine.c ├── mountain.c ├── outside.c ├── segment2.c ├── sky.c ├── snow.c ├── spooky.c ├── title_screen_bg.c └── water.c ├── charmap.txt ├── charmap_menu.txt ├── data └── behavior_data.c ├── diff.py ├── diff_settings.py ├── doxygen └── logo.png ├── enhancements ├── 60fps.patch ├── README.md ├── RecordDemo.js ├── crash.patch ├── crash_font.bin ├── debug_box.patch ├── fps.patch ├── hd_mario.patch ├── ique_support.patch ├── mem_error_screen.patch ├── nodrawingdistance.patch ├── puppycam.patch └── record_demo.patch ├── extract_assets.py ├── first-diff.py ├── format.sh ├── include ├── PR │ ├── R4300.h │ ├── abi.h │ ├── gbi.h │ ├── gs2dex.h │ ├── gu.h │ ├── libaudio.h │ ├── libultra.h │ ├── mbi.h │ ├── os.h │ ├── os_ai.h │ ├── os_cache.h │ ├── os_cont.h │ ├── os_eeprom.h │ ├── os_exception.h │ ├── os_internal.h │ ├── os_libc.h │ ├── os_message.h │ ├── os_misc.h │ ├── os_pi.h │ ├── os_rdp.h │ ├── os_thread.h │ ├── os_time.h │ ├── os_tlb.h │ ├── os_vi.h │ ├── rcp.h │ ├── sptask.h │ ├── ucode.h │ └── ultratypes.h ├── behavior_data.h ├── command_macros_base.h ├── config.h ├── course_table.h ├── dialog_ids.h ├── eu_translation.h ├── geo_commands.h ├── gfx_dimensions.h ├── helper_macros.h ├── level_commands.h ├── level_misc_macros.h ├── level_table.h ├── libc │ ├── math.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ └── string.h ├── macro_preset_names.h ├── macro_presets.h ├── macros.h ├── macros.inc ├── make_const_nonconst.h ├── mario_animation_ids.h ├── mario_geo_switch_case_ids.h ├── model_ids.h ├── moving_texture_macros.h ├── object_constants.h ├── object_fields.h ├── platform_info.h ├── prevent_bss_reordering.h ├── segment_symbols.h ├── segments.h ├── seq_ids.h ├── seq_macros.inc ├── sm64.h ├── sounds.h ├── special_preset_names.h ├── special_presets.h ├── surface_terrains.h ├── text_menu_strings.h.in ├── text_strings.h.in ├── textures.h ├── trig_tables.inc.c ├── types.h └── ultra64.h ├── levels ├── bbh │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ └── model.inc.c │ │ │ ├── 27 │ │ │ └── model.inc.c │ │ │ ├── 28 │ │ │ └── model.inc.c │ │ │ ├── 29 │ │ │ └── model.inc.c │ │ │ ├── 30 │ │ │ └── model.inc.c │ │ │ ├── 31 │ │ │ └── model.inc.c │ │ │ ├── 32 │ │ │ └── model.inc.c │ │ │ ├── 33 │ │ │ └── model.inc.c │ │ │ ├── 34 │ │ │ └── model.inc.c │ │ │ ├── 35 │ │ │ └── model.inc.c │ │ │ ├── 36 │ │ │ └── model.inc.c │ │ │ ├── 37 │ │ │ └── model.inc.c │ │ │ ├── 38 │ │ │ └── model.inc.c │ │ │ ├── 39 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── room.inc.c │ ├── coffin │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── merry_go_round │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── mesh_elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── moving_bookshelf │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── staircase_step │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── tilting_trap_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tumbling_platform_far │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tumbling_platform_near │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── bitdw │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── large_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── narrow_path_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── octogonal_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── platform_with_hill │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── platforms_and_tilting │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── platforms_and_tilting_2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartz_crystal │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartzy_path_1 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartzy_path_2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── quartzy_path_fences │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── staircase_slope_and_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── starting_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── track_for_pyramid_platforms │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── wooden_bridge_and_fences │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ └── wooden_platform │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ ├── collapsing_stairs_1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_3 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_4 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── collapsing_stairs_5 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── ferris_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── ferris_wheel_axle │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── bitfs │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ ├── elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── moving_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── platform_on_track │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_cage_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_cage_pole │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_platforms │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── stretching_platform │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── texture.inc.c │ ├── tilting_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tumbling_platform_far │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tumbling_platform_near │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── bits │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 27 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 28 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 29 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 30 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 31 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 32 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── bob │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── trajectory.inc.c │ ├── chain_chomp_gate │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── grate_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── bowser_1 │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── bowser_2 │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── texture.inc.c │ └── tilting_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── bowser_3 │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── bomb_stand │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ ├── falling_platform_1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_10 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_3 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_4 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_5 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_6 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_7 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_8 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_platform_9 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── castle_courtyard │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── spire │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── castle_grounds │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── anim.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── castle_inside │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── room.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── pendulum │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ └── room.inc.c │ │ └── 3 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ ├── room.inc.c │ │ │ └── trajectory.inc.c │ ├── clock_hour_hand │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── clock_minute_hand │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── painting.inc.c │ ├── script.c │ ├── star_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── trap_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── water_level_pillar │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── ccm │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 7 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ ├── 3.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 8 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ ├── 3.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── trajectory.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── ropeway_lift │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── script.c │ ├── snowman_base │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── snowman_head │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ └── geo.inc.c │ └── texture.inc.c ├── cotmc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── movtext.inc.c │ ├── script.c │ └── texture.inc.c ├── course_defines.h ├── ddd │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── pole │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── sub_door │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── 3.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── submarine │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ └── texture.inc.c ├── ending │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ └── script.c ├── entry.c ├── entry.h ├── hmc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ └── model.inc.c │ │ │ ├── 22 │ │ │ └── model.inc.c │ │ │ ├── 23 │ │ │ └── model.inc.c │ │ │ ├── 24 │ │ │ └── model.inc.c │ │ │ ├── 25 │ │ │ └── model.inc.c │ │ │ ├── 26 │ │ │ └── model.inc.c │ │ │ ├── 27 │ │ │ └── model.inc.c │ │ │ ├── 28 │ │ │ └── model.inc.c │ │ │ ├── 29 │ │ │ └── model.inc.c │ │ │ ├── 30 │ │ │ └── model.inc.c │ │ │ ├── 31 │ │ │ └── model.inc.c │ │ │ ├── 32 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── grill_door │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ ├── painting.inc.c │ │ │ ├── room.inc.c │ │ │ └── trajectory.inc.c │ ├── arrow_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── arrow_platform_button │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── elevator_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── rolling_rock │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_rock_fragment_1 │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_rock_fragment_2 │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ └── texture.inc.c ├── intro │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ └── script.c ├── jrb │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── falling_pillar │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── falling_pillar_base │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── floating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── rock │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── sliding_box │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── unused_lid │ │ └── collision.inc.c │ └── wooden_ship │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── level_defines.h ├── level_headers.h.in ├── level_rules.mk ├── lll │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ ├── collision.inc.c │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── light.inc.c │ │ │ └── macro.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ ├── collapsing_wooden_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── drawbridge_part │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── long_wooden_bridge │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── moving_octagonal_mesh_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── puzzle_piece │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_log │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_block_fire_bars │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_hexagonal_ring │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── sinking_rectangular_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_rock_block │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sinking_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── tilting_square_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── volcano_falling_trap │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── wooden_float_large │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── wooden_float_small │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── menu │ ├── geo.c │ ├── header.h │ ├── leveldata.c │ └── script.c ├── pss │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── rr │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 12 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── trajectory.inc.c │ ├── cruiser_wing │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── donut_block │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── elevator_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── flying_carpet │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── l_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── octagonal_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pyramid_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_bridge_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── seesaw_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── swinging_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── tricky_triangles_1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tricky_triangles_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tricky_triangles_3 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tricky_triangles_4 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tricky_triangles_5 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── sa │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── scripts.c ├── scripts.h ├── sl │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── snow_mound │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ ├── unused_cracked_ice │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── unused_ice_shard │ │ ├── geo.inc.c │ │ └── model.inc.c ├── ssl │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── geo.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 3 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── eyerok_col │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── grindel │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── moving_pyramid_wall │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pyramid_elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pyramid_top │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── spindel │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ └── tox_box │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── thi │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ │ └── model.inc.c │ │ │ ├── 6 │ │ │ │ ├── collision.inc.c │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 7 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ └── trajectory.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 3 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── totwc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── cloud │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── ttc │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── clock_hand │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── elevator_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── large_gear │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── large_treadmill │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── pendulum │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pit_block │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── pit_block_2 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── push_block │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_cube │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_hexagon │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_prism │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_triangle │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── small_gear │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── small_treadmill │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── spinner │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── ttm │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 4 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 5 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 6 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 7 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 11 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 13 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 16 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 17 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 18 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── 19 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 20 │ │ │ │ ├── geo.inc.c │ │ │ │ └── model.inc.c │ │ │ ├── 21 │ │ │ │ ├── 1.inc.c │ │ │ │ ├── 2.inc.c │ │ │ │ └── geo.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ ├── movtext.inc.c │ │ │ ├── painting.inc.c │ │ │ └── trajectory.inc.c │ │ ├── 2 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ │ ├── 3 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ │ └── 4 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── blue_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── moon_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rolling_log │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── slide_exit_podium │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── star_cage │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── star_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ └── yellow_smiley │ │ ├── geo.inc.c │ │ └── model.inc.c ├── vcutm │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── macro.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ ├── seesaw │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── texture.inc.c ├── wdw │ ├── areas │ │ ├── 1 │ │ │ ├── 1 │ │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ │ └── 2 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── arrow_lift │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── double_arrows │ │ └── model.inc.c │ ├── express_elevator │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── hidden_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── rectangular_floating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── rotating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── script.c │ ├── square_floating_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── texture.inc.c │ └── water_level_diamond │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c ├── wf │ ├── areas │ │ └── 1 │ │ │ ├── 1 │ │ │ └── model.inc.c │ │ │ ├── 2 │ │ │ └── model.inc.c │ │ │ ├── 3 │ │ │ └── model.inc.c │ │ │ ├── 4 │ │ │ └── model.inc.c │ │ │ ├── 5 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 6 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 7 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 8 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 9 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 10 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ ├── collision.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 11 │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 12 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 13 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 14 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 15 │ │ │ ├── 1.inc.c │ │ │ ├── 2.inc.c │ │ │ ├── 3.inc.c │ │ │ └── geo.inc.c │ │ │ ├── 16 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 17 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 18 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── 19 │ │ │ ├── geo.inc.c │ │ │ └── model.inc.c │ │ │ ├── collision.inc.c │ │ │ ├── geo.inc.c │ │ │ ├── macro.inc.c │ │ │ └── movtext.inc.c │ ├── beta_extending_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── breakable_wall_left │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── breakable_wall_right │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── extending_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── kickable_board │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── large_bomp │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── level.yaml │ ├── leveldata.c │ ├── rotating_platform │ │ └── collision.inc.c │ ├── rotating_wooden_platform │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── script.c │ ├── sliding_platform │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── small_bomp │ │ ├── 1.inc.c │ │ ├── 2.inc.c │ │ ├── collision.inc.c │ │ └── geo.inc.c │ ├── texture.inc.c │ ├── tower_door │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c │ ├── tumbling_bridge_far │ │ ├── geo.inc.c │ │ └── model.inc.c │ └── tumbling_bridge_near │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ └── model.inc.c └── wmotr │ ├── areas │ └── 1 │ │ ├── collision.inc.c │ │ ├── geo.inc.c │ │ ├── macro.inc.c │ │ └── model.inc.c │ ├── geo.c │ ├── header.h │ ├── level.yaml │ ├── leveldata.c │ ├── script.c │ └── texture.inc.c ├── lib ├── PR │ ├── f3dex │ │ ├── F3DEX.bin │ │ ├── F3DEX_NoN.bin │ │ ├── F3DEX_NoN_data.bin │ │ ├── F3DEX_data.bin │ │ ├── F3DLX.bin │ │ ├── F3DLX_NoN.bin │ │ ├── F3DLX_NoN_data.bin │ │ ├── F3DLX_Rej.bin │ │ ├── F3DLX_Rej_data.bin │ │ ├── F3DLX_data.bin │ │ ├── L3DEX.bin │ │ └── L3DEX_data.bin │ ├── f3dex2 │ │ ├── F3DEX2.bin │ │ ├── F3DEX2_NoN.bin │ │ ├── F3DEX2_NoN_data.bin │ │ ├── F3DEX2_data.bin │ │ ├── F3DLX2_Rej.bin │ │ ├── F3DLX2_Rej_data.bin │ │ ├── F3DZEX_NoN.bin │ │ ├── F3DZEX_NoN_data.bin │ │ ├── L3DEX2.bin │ │ └── L3DEX2_data.bin │ └── s2dex │ │ ├── S2DEX.bin │ │ └── S2DEX_data.bin ├── asm │ ├── __osDisableInt.s │ ├── __osExceptionPreamble.s │ ├── __osGetCause.s │ ├── __osGetSR.s │ ├── __osProbeTLB.s │ ├── __osRestoreInt.s │ ├── __osSetCompare.s │ ├── __osSetFpcCsr.s │ ├── __osSetSR.s │ ├── __os_eu_802ef550.s │ ├── bcopy.s │ ├── bzero.s │ ├── llmuldiv_gcc.s │ ├── osGetCount.s │ ├── osInvalDCache.s │ ├── osInvalICache.s │ ├── osMapTLB.s │ ├── osMapTLBRdb.s │ ├── osSetIntMask.s │ ├── osUnmapTLBAll.s │ ├── osWritebackDCache.s │ ├── osWritebackDCacheAll.s │ ├── parameters.s │ └── sqrtf.s ├── rsp.s └── src │ ├── D_802F4380.c │ ├── EU_D_802f4330.c │ ├── NaN.c │ ├── _Ldtob.c │ ├── _Litob.c │ ├── _Printf.c │ ├── __osAiDeviceBusy.c │ ├── __osAtomicDec.c │ ├── __osDequeueThread.c │ ├── __osDevMgrMain.c │ ├── __osEPiRawReadIo.c │ ├── __osEPiRawWriteIo.c │ ├── __osGetCurrFaultedThread.c │ ├── __osPiCreateAccessQueue.c │ ├── __osResetGlobalIntMask.c │ ├── __osSetGlobalIntMask.c │ ├── __osSiCreateAccessQueue.c │ ├── __osSiDeviceBusy.c │ ├── __osSiRawReadIo.c │ ├── __osSiRawStartDma.c │ ├── __osSiRawWriteIo.c │ ├── __osSpDeviceBusy.c │ ├── __osSpGetStatus.c │ ├── __osSpRawStartDma.c │ ├── __osSpSetPc.c │ ├── __osSpSetStatus.c │ ├── __osSyncPutChars.c │ ├── __osViGetCurrentContext.c │ ├── __osViInit.c │ ├── __osViSwapContext.c │ ├── alBnkfNew.c │ ├── bstring.h │ ├── contramread.c │ ├── contramwrite.c │ ├── controller.h │ ├── crc.c │ ├── epidma.c │ ├── func_802F4A20.c │ ├── func_802F71F0.c │ ├── guLookAtRef.c │ ├── guMtxF2L.c │ ├── guNormalize.c │ ├── guOrthoF.c │ ├── guPerspectiveF.c │ ├── guRotateF.c │ ├── guScaleF.c │ ├── guTranslateF.c │ ├── hardware.h │ ├── kdebugserver.c │ ├── kdebugserver_stack.c │ ├── ldiv.c │ ├── leointerrupt.c │ ├── libaudio_internal.h │ ├── libultra_internal.h │ ├── math │ ├── cosf.c │ ├── llconv.c │ ├── llmuldiv.c │ └── sinf.c │ ├── motor.c │ ├── new_func.h │ ├── osAi.h │ ├── osAiGetLength.c │ ├── osAiSetFrequency.c │ ├── osAiSetNextBuffer.c │ ├── osCartRomInit.c │ ├── osContInit.c │ ├── osContInternal.h │ ├── osContStartReadData.c │ ├── osCreateMesgQueue.c │ ├── osCreatePiManager.c │ ├── osCreateThread.c │ ├── osCreateViManager.c │ ├── osDestroyThread.c │ ├── osDriveRomInit.c │ ├── osEPiRawStartDma.c │ ├── osEepromLongRead.c │ ├── osEepromLongWrite.c │ ├── osEepromProbe.c │ ├── osEepromRead.c │ ├── osEepromWrite.c │ ├── osGetThreadPri.c │ ├── osGetTime.c │ ├── osInitialize.c │ ├── osJamMesg.c │ ├── osLeoDiskInit.c │ ├── osPfsIsPlug.c │ ├── osPiGetCmdQueue.c │ ├── osPiRawReadIo.c │ ├── osPiRawStartDma.c │ ├── osPiStartDma.c │ ├── osRecvMesg.c │ ├── osSendMesg.c │ ├── osSetEventMesg.c │ ├── osSetThreadPri.c │ ├── osSetTime.c │ ├── osSetTimer.c │ ├── osSpTaskLoadGo.c │ ├── osSpTaskYield.c │ ├── osSpTaskYielded.c │ ├── osStartThread.c │ ├── osTimer.c │ ├── osViBlack.c │ ├── osViData.c │ ├── osViSetEvent.c │ ├── osViSetMode.c │ ├── osViSetSpecialFeatures.c │ ├── osViSwapBuffer.c │ ├── osViTable.c │ ├── osVirtualToPhysical.c │ ├── osint.h │ ├── pfsgetstatus.c │ ├── piint.h │ ├── printf.h │ ├── sprintf.c │ ├── string.c │ └── unk_shindou_file_3.c ├── rename_sym.sh ├── rsp ├── audio.s ├── fast3d.s ├── gbi.inc ├── rsp_defs.inc └── rspboot.s ├── sm64.eu.sha1 ├── sm64.jp.sha1 ├── sm64.ld ├── sm64.sh.sha1 ├── sm64.us.sha1 ├── sound ├── README.md ├── sequences.json ├── sequences │ └── 00_sound_player.s ├── sound_banks │ ├── 00.json │ ├── 01_terrain.json │ ├── 02_water.json │ ├── 03.json │ ├── 04.json │ ├── 05.json │ ├── 06.json │ ├── 07.json │ ├── 08_mario.json │ ├── 09.json │ ├── 0A_mario_peach.json │ ├── 0B.json │ ├── 0C.json │ ├── 0D.json │ ├── 0E.json │ ├── 0F.json │ ├── 10.json │ ├── 11.json │ ├── 12.json │ ├── 13.json │ ├── 14_piranha_music_box.json │ ├── 15.json │ ├── 16_course_start.json │ ├── 17.json │ ├── 18.json │ ├── 19.json │ ├── 1A.json │ ├── 1B.json │ ├── 1C_endless_stairs.json │ ├── 1D_bowser_organ.json │ ├── 1E.json │ ├── 1F.json │ ├── 20.json │ ├── 21.json │ ├── 22.json │ ├── 23.json │ ├── 24.json │ └── 25.json └── sound_data.c ├── src ├── audio │ ├── audio_session_presets_sh.c │ ├── copt │ │ └── seq_channel_layer_process_script_copt.inc.c │ ├── data.c │ ├── data.h │ ├── effects.c │ ├── effects.h │ ├── external.c │ ├── external.h │ ├── globals_start.c │ ├── heap.c │ ├── heap.h │ ├── internal.h │ ├── load.c │ ├── load.h │ ├── load_sh.c │ ├── playback.c │ ├── playback.h │ ├── port_eu.c │ ├── port_sh.c │ ├── seqplayer.c │ ├── seqplayer.h │ ├── shindou_debug_prints.c │ ├── synthesis.c │ ├── synthesis.h │ └── synthesis_sh.c ├── buffers │ ├── buffers.c │ ├── buffers.h │ ├── framebuffers.c │ ├── framebuffers.h │ ├── gfx_output_buffer.c │ ├── gfx_output_buffer.h │ ├── zbuffer.c │ └── zbuffer.h ├── engine │ ├── behavior_script.c │ ├── behavior_script.h │ ├── geo_layout.c │ ├── geo_layout.h │ ├── graph_node.c │ ├── graph_node.h │ ├── graph_node_manager.c │ ├── level_script.c │ ├── level_script.h │ ├── math_util.c │ ├── math_util.h │ ├── surface_collision.c │ ├── surface_collision.h │ ├── surface_load.c │ └── surface_load.h ├── game │ ├── area.c │ ├── area.h │ ├── behavior_actions.c │ ├── behavior_actions.h │ ├── behaviors │ │ ├── activated_bf_plat.inc.c │ │ ├── amp.inc.c │ │ ├── animated_floor_switch.inc.c │ │ ├── arrow_lift.inc.c │ │ ├── bbh_haunted_bookshelf.inc.c │ │ ├── bbh_merry_go_round.inc.c │ │ ├── bbh_tilting_trap.inc.c │ │ ├── beta_boo_key.inc.c │ │ ├── beta_bowser_anchor.inc.c │ │ ├── beta_chest.inc.c │ │ ├── beta_fish_splash_spawner.inc.c │ │ ├── beta_holdable_object.inc.c │ │ ├── beta_trampoline.inc.c │ │ ├── bird.inc.c │ │ ├── blue_coin.inc.c │ │ ├── blue_fish.inc.c │ │ ├── bobomb.inc.c │ │ ├── bomp.inc.c │ │ ├── boo.inc.c │ │ ├── boo_cage.inc.c │ │ ├── boulder.inc.c │ │ ├── bouncing_fireball.inc.c │ │ ├── bowling_ball.inc.c │ │ ├── bowser.inc.c │ │ ├── bowser_bomb.inc.c │ │ ├── bowser_falling_platform.inc.c │ │ ├── bowser_flame.inc.c │ │ ├── bowser_key.inc.c │ │ ├── bowser_key_cutscene.inc.c │ │ ├── bowser_puzzle_piece.inc.c │ │ ├── break_particles.inc.c │ │ ├── breakable_box.inc.c │ │ ├── breakable_box_small.inc.c │ │ ├── breakable_wall.inc.c │ │ ├── bub.inc.c │ │ ├── bubba.inc.c │ │ ├── bubble.inc.c │ │ ├── bullet_bill.inc.c │ │ ├── bully.inc.c │ │ ├── butterfly.inc.c │ │ ├── camera_lakitu.inc.c │ │ ├── cannon.inc.c │ │ ├── cannon_door.inc.c │ │ ├── cap.inc.c │ │ ├── capswitch.inc.c │ │ ├── castle_cannon_grate.inc.c │ │ ├── castle_flag.inc.c │ │ ├── castle_floor_trap.inc.c │ │ ├── celebration_star.inc.c │ │ ├── chain_chomp.inc.c │ │ ├── checkerboard_platform.inc.c │ │ ├── chuckya.inc.c │ │ ├── clam.inc.c │ │ ├── clock_arm.inc.c │ │ ├── cloud.inc.c │ │ ├── coffin.inc.c │ │ ├── coin.inc.c │ │ ├── collide_particles.inc.c │ │ ├── controllable_platform.inc.c │ │ ├── corkbox.inc.c │ │ ├── cruiser.inc.c │ │ ├── ddd_pole.inc.c │ │ ├── ddd_sub.inc.c │ │ ├── ddd_warp.inc.c │ │ ├── decorative_pendulum.inc.c │ │ ├── donut_platform.inc.c │ │ ├── door.inc.c │ │ ├── dorrie.inc.c │ │ ├── drawbridge.inc.c │ │ ├── elevator.inc.c │ │ ├── end_birds_1.inc.c │ │ ├── end_birds_2.inc.c │ │ ├── enemy_lakitu.inc.c │ │ ├── exclamation_box.inc.c │ │ ├── explosion.inc.c │ │ ├── express_elevator.inc.c │ │ ├── eyerok.inc.c │ │ ├── falling_pillar.inc.c │ │ ├── falling_rising_platform.inc.c │ │ ├── ferris_wheel.inc.c │ │ ├── fire_piranha_plant.inc.c │ │ ├── fire_spitter.inc.c │ │ ├── fish.inc.c │ │ ├── fishing_boo.inc.c │ │ ├── flame.inc.c │ │ ├── flame_mario.inc.c │ │ ├── flamethrower.inc.c │ │ ├── floating_box.inc.c │ │ ├── floating_platform.inc.c │ │ ├── fly_guy.inc.c │ │ ├── flying_bookend_switch.inc.c │ │ ├── goomba.inc.c │ │ ├── grand_star.inc.c │ │ ├── grill_door.inc.c │ │ ├── ground_particles.inc.c │ │ ├── haunted_chair.inc.c │ │ ├── heave_ho.inc.c │ │ ├── hidden_star.inc.c │ │ ├── hoot.inc.c │ │ ├── horizontal_grindel.inc.c │ │ ├── intro_lakitu.inc.c │ │ ├── intro_peach.inc.c │ │ ├── intro_scene.inc.c │ │ ├── jrb_ship.inc.c │ │ ├── jumping_box.inc.c │ │ ├── kickable_board.inc.c │ │ ├── king_bobomb.inc.c │ │ ├── klepto.inc.c │ │ ├── koopa.inc.c │ │ ├── koopa_shell.inc.c │ │ ├── koopa_shell_underwater.inc.c │ │ ├── lll_floating_wood_piece.inc.c │ │ ├── lll_hexagonal_ring.inc.c │ │ ├── lll_octagonal_rotating_mesh.inc.c │ │ ├── lll_rotating_hex_flame.inc.c │ │ ├── lll_sinking_rectangle.inc.c │ │ ├── lll_sinking_rock_block.inc.c │ │ ├── lll_volcano_flames.inc.c │ │ ├── mad_piano.inc.c │ │ ├── manta_ray.inc.c │ │ ├── metal_box.inc.c │ │ ├── mips.inc.c │ │ ├── moat_drainer.inc.c │ │ ├── moat_grill.inc.c │ │ ├── moneybag.inc.c │ │ ├── monty_mole.inc.c │ │ ├── moving_coin.inc.c │ │ ├── mr_blizzard.inc.c │ │ ├── mr_i.inc.c │ │ ├── mushroom_1up.inc.c │ │ ├── music_touch.inc.c │ │ ├── orange_number.inc.c │ │ ├── piranha_bubbles.inc.c │ │ ├── piranha_plant.inc.c │ │ ├── platform_on_track.inc.c │ │ ├── pokey.inc.c │ │ ├── pole.inc.c │ │ ├── pole_base.inc.c │ │ ├── purple_switch.inc.c │ │ ├── pyramid_elevator.inc.c │ │ ├── pyramid_top.inc.c │ │ ├── pyramid_wall.inc.c │ │ ├── racing_penguin.inc.c │ │ ├── recovery_heart.inc.c │ │ ├── red_coin.inc.c │ │ ├── reds_star_marker.inc.c │ │ ├── rolling_log.inc.c │ │ ├── rotating_octagonal_plat.inc.c │ │ ├── rotating_platform.inc.c │ │ ├── scuttlebug.inc.c │ │ ├── seaweed.inc.c │ │ ├── seesaw_platform.inc.c │ │ ├── shock_wave.inc.c │ │ ├── skeeter.inc.c │ │ ├── sl_snowman_wind.inc.c │ │ ├── sl_walking_penguin.inc.c │ │ ├── sliding_platform.inc.c │ │ ├── sliding_platform_2.inc.c │ │ ├── snow_mound.inc.c │ │ ├── snowman.inc.c │ │ ├── snufit.inc.c │ │ ├── sound_ambient.inc.c │ │ ├── sound_birds.inc.c │ │ ├── sound_sand.inc.c │ │ ├── sound_spawner.inc.c │ │ ├── sound_volcano.inc.c │ │ ├── sound_waterfall.inc.c │ │ ├── sparkle_spawn.inc.c │ │ ├── sparkle_spawn_star.inc.c │ │ ├── spawn_star.inc.c │ │ ├── spawn_star_exit.inc.c │ │ ├── spindel.inc.c │ │ ├── spindrift.inc.c │ │ ├── spiny.inc.c │ │ ├── square_platform_cycle.inc.c │ │ ├── star_door.inc.c │ │ ├── static_checkered_platform.inc.c │ │ ├── strong_wind_particle.inc.c │ │ ├── sushi.inc.c │ │ ├── swing_platform.inc.c │ │ ├── switch_hidden_objects.inc.c │ │ ├── swoop.inc.c │ │ ├── thi_top.inc.c │ │ ├── thwomp.inc.c │ │ ├── tilting_inverted_pyramid.inc.c │ │ ├── tower_door.inc.c │ │ ├── tower_platform.inc.c │ │ ├── tox_box.inc.c │ │ ├── treasure_chest.inc.c │ │ ├── tree_particles.inc.c │ │ ├── triplet_butterfly.inc.c │ │ ├── ttc_2d_rotator.inc.c │ │ ├── ttc_cog.inc.c │ │ ├── ttc_elevator.inc.c │ │ ├── ttc_moving_bar.inc.c │ │ ├── ttc_pendulum.inc.c │ │ ├── ttc_pit_block.inc.c │ │ ├── ttc_rotating_solid.inc.c │ │ ├── ttc_spinner.inc.c │ │ ├── ttc_treadmill.inc.c │ │ ├── tumbling_bridge.inc.c │ │ ├── tuxie.inc.c │ │ ├── tweester.inc.c │ │ ├── ukiki.inc.c │ │ ├── ukiki_cage.inc.c │ │ ├── unagi.inc.c │ │ ├── unused_particle_spawn.inc.c │ │ ├── unused_poundable_platform.inc.c │ │ ├── warp.inc.c │ │ ├── water_bomb.inc.c │ │ ├── water_bomb_cannon.inc.c │ │ ├── water_mist.inc.c │ │ ├── water_mist_particle.inc.c │ │ ├── water_objs.inc.c │ │ ├── water_pillar.inc.c │ │ ├── water_ring.inc.c │ │ ├── water_splashes_and_waves.inc.c │ │ ├── water_wave.inc.c │ │ ├── wdw_water_level.inc.c │ │ ├── whirlpool.inc.c │ │ ├── white_puff.inc.c │ │ ├── white_puff_explode.inc.c │ │ ├── whomp.inc.c │ │ ├── wiggler.inc.c │ │ ├── wind.inc.c │ │ └── yoshi.inc.c │ ├── camera.c │ ├── camera.h │ ├── crash_screen.c │ ├── debug.c │ ├── debug.h │ ├── debug_course.c │ ├── debug_course.h │ ├── decompress.h │ ├── envfx_bubbles.c │ ├── envfx_bubbles.h │ ├── envfx_snow.c │ ├── envfx_snow.h │ ├── game_init.c │ ├── game_init.h │ ├── geo_misc.c │ ├── geo_misc.h │ ├── hud.c │ ├── hud.h │ ├── ingame_menu.c │ ├── ingame_menu.h │ ├── interaction.c │ ├── interaction.h │ ├── level_geo.c │ ├── level_geo.h │ ├── level_update.c │ ├── level_update.h │ ├── macro_special_objects.c │ ├── macro_special_objects.h │ ├── main.c │ ├── main.h │ ├── mario.c │ ├── mario.h │ ├── mario_actions_airborne.c │ ├── mario_actions_airborne.h │ ├── mario_actions_automatic.c │ ├── mario_actions_automatic.h │ ├── mario_actions_cutscene.c │ ├── mario_actions_cutscene.h │ ├── mario_actions_moving.c │ ├── mario_actions_moving.h │ ├── mario_actions_object.c │ ├── mario_actions_object.h │ ├── mario_actions_stationary.c │ ├── mario_actions_stationary.h │ ├── mario_actions_submerged.c │ ├── mario_actions_submerged.h │ ├── mario_misc.c │ ├── mario_misc.h │ ├── mario_step.c │ ├── mario_step.h │ ├── memory.c │ ├── memory.h │ ├── moving_texture.c │ ├── moving_texture.h │ ├── obj_behaviors.c │ ├── obj_behaviors.h │ ├── obj_behaviors_2.c │ ├── obj_behaviors_2.h │ ├── object_collision.c │ ├── object_collision.h │ ├── object_helpers.c │ ├── object_helpers.h │ ├── object_list_processor.c │ ├── object_list_processor.h │ ├── paintings.c │ ├── paintings.h │ ├── platform_displacement.c │ ├── platform_displacement.h │ ├── print.c │ ├── print.h │ ├── profiler.c │ ├── profiler.h │ ├── rendering_graph_node.c │ ├── rendering_graph_node.h │ ├── rumble_init.c │ ├── rumble_init.h │ ├── save_file.c │ ├── save_file.h │ ├── screen_transition.c │ ├── screen_transition.h │ ├── segment2.h │ ├── segment7.h │ ├── shadow.c │ ├── shadow.h │ ├── skybox.c │ ├── skybox.h │ ├── sound_init.c │ ├── sound_init.h │ ├── spawn_object.c │ ├── spawn_object.h │ ├── spawn_sound.c │ └── spawn_sound.h ├── goddard │ ├── bad_declarations.h │ ├── debug_utils.c │ ├── debug_utils.h │ ├── draw_objects.c │ ├── draw_objects.h │ ├── dynlist_proc.c │ ├── dynlist_proc.h │ ├── dynlists │ │ ├── anim_group_1.c │ │ ├── anim_group_2.c │ │ ├── anim_mario_eyebrows_1.c │ │ ├── anim_mario_lips_1.c │ │ ├── anim_mario_lips_2.c │ │ ├── anim_mario_mustache_left.c │ │ ├── anim_mario_mustache_right.c │ │ ├── animdata.h │ │ ├── dynlist_macros.h │ │ ├── dynlist_mario_face.c │ │ ├── dynlist_mario_master.c │ │ ├── dynlist_test_cube.c │ │ ├── dynlist_unused.c │ │ ├── dynlists.h │ │ ├── dynlists_mario_eyebrows_mustache.c │ │ └── dynlists_mario_eyes.c │ ├── gd_macros.h │ ├── gd_main.c │ ├── gd_main.h │ ├── gd_math.c │ ├── gd_math.h │ ├── gd_memory.c │ ├── gd_memory.h │ ├── gd_types.h │ ├── joints.c │ ├── joints.h │ ├── objects.c │ ├── objects.h │ ├── old_menu.c │ ├── old_menu.h │ ├── particles.c │ ├── particles.h │ ├── renderer.c │ ├── renderer.h │ ├── sfx.c │ ├── sfx.h │ ├── shape_helper.c │ ├── shape_helper.h │ ├── skin.c │ ├── skin.h │ ├── skin_movement.c │ └── skin_movement.h ├── menu │ ├── debug_level_select.h │ ├── file_select.c │ ├── file_select.h │ ├── intro_geo.c │ ├── intro_geo.h │ ├── star_select.c │ ├── star_select.h │ ├── title_screen.c │ └── title_screen.h └── pc │ ├── audio │ ├── audio_alsa.c │ ├── audio_alsa.h │ ├── audio_api.h │ ├── audio_null.c │ ├── audio_null.h │ ├── audio_pulse.c │ ├── audio_pulse.h │ ├── audio_sdl.c │ ├── audio_sdl.h │ ├── audio_wasapi.cpp │ └── audio_wasapi.h │ ├── compat.h │ ├── configfile.c │ ├── configfile.h │ ├── controller │ ├── controller_api.h │ ├── controller_emscripten_keyboard.c │ ├── controller_emscripten_keyboard.h │ ├── controller_entry_point.c │ ├── controller_keyboard.c │ ├── controller_keyboard.h │ ├── controller_recorded_tas.c │ ├── controller_recorded_tas.h │ ├── controller_sdl.c │ ├── controller_sdl.h │ ├── controller_vita.c │ ├── controller_vita.h │ ├── controller_wup.c │ ├── controller_wup.h │ ├── controller_xinput.c │ ├── controller_xinput.h │ └── wup.c │ ├── dlmalloc.c │ ├── gfx │ ├── LICENSE.txt │ ├── README.md │ ├── dxsdk │ │ ├── d3d12.h │ │ ├── d3d12sdklayers.h │ │ ├── d3dcommon.h │ │ └── d3dx12.h │ ├── gfx_cc.c │ ├── gfx_cc.h │ ├── gfx_direct3d11.cpp │ ├── gfx_direct3d11.h │ ├── gfx_direct3d12.cpp │ ├── gfx_direct3d12.h │ ├── gfx_direct3d12_guids.h │ ├── gfx_direct3d_common.cpp │ ├── gfx_direct3d_common.h │ ├── gfx_dummy.c │ ├── gfx_dummy.h │ ├── gfx_dxgi.cpp │ ├── gfx_dxgi.h │ ├── gfx_glx.c │ ├── gfx_glx.h │ ├── gfx_opengl.c │ ├── gfx_opengl.h │ ├── gfx_pc.c │ ├── gfx_pc.h │ ├── gfx_rendering_api.h │ ├── gfx_screen_config.h │ ├── gfx_sdl.h │ ├── gfx_sdl2.c │ ├── gfx_vita.c │ ├── gfx_vita.h │ ├── gfx_vitagl.c │ ├── gfx_vitagl.h │ ├── gfx_vitagl_loadshaders.patch │ └── gfx_window_manager_api.h │ ├── mixer.c │ ├── mixer.h │ ├── pc_main.c │ └── ultra_reimplementation.c ├── text ├── de │ ├── courses.h │ └── dialogs.h ├── define_courses.inc.c ├── define_text.inc.c ├── fr │ ├── courses.h │ └── dialogs.h ├── jp │ ├── courses.h │ └── dialogs.h └── us │ ├── courses.h │ └── dialogs.h ├── tools ├── .gitignore ├── Makefile ├── aifc_decode.c ├── aiff_extract_codebook.c ├── apply_patch.sh ├── armips.cpp ├── asm_processor │ ├── asm-processor.py │ ├── build.py │ └── prelude.inc ├── assemble_sound.py ├── audiofile │ ├── Makefile │ ├── audiofile.cpp │ ├── audiofile.h │ └── aupvlist.h ├── calc_bss.sh ├── clang-tidy.sh ├── create_patch.sh ├── demo_data_converter.py ├── determine-endian-bitwidth.c ├── disassemble_sound.py ├── extract_data_for_mio.c ├── gen_asset_list.cpp ├── hashtable.c ├── hashtable.h ├── ido5.3_compiler │ ├── LICENSE.md │ ├── lib │ │ ├── libmalloc.so │ │ ├── libmalloc_old.so │ │ └── rld │ └── usr │ │ ├── bin │ │ └── cc │ │ └── lib │ │ ├── acpp │ │ ├── as0 │ │ ├── as1 │ │ ├── cfe │ │ ├── copt │ │ ├── crt1.o │ │ ├── err.english.cc │ │ ├── libc.so.1 │ │ ├── libexc.so │ │ ├── libgen.so │ │ ├── libm.so │ │ ├── ugen │ │ ├── ujoin │ │ ├── uld │ │ ├── umerge │ │ ├── uopt │ │ └── usplit ├── ido5.3_recomp │ ├── .gitignore │ ├── Makefile │ ├── elf.h │ ├── header.h │ ├── helpers.h │ ├── libc_impl.c │ ├── libc_impl.h │ └── recomp.cpp ├── libmio0.c ├── libmio0.h ├── mario_anims_converter.py ├── n64cksum.c ├── n64cksum.h ├── n64graphics.c ├── n64graphics.h ├── n64graphics_ci_dir │ ├── LICENSE │ ├── README.md │ ├── exoquant │ │ ├── exoquant.c │ │ └── exoquant.h │ ├── n64graphics_ci.c │ ├── n64graphics_ci.h │ ├── utils.c │ └── utils.h ├── patch_elf_32bit.c ├── patch_libmalloc.py ├── rasm2armips.py ├── revert_patch.sh ├── sdk-tools │ ├── README.md │ ├── adpcm │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── quant.c │ │ ├── sampleio.c │ │ ├── util.c │ │ ├── vadpcm.h │ │ ├── vadpcm_dec.c │ │ ├── vadpcm_enc.c │ │ ├── vdecode.c │ │ ├── vencode.c │ │ └── vpredictor.c │ └── tabledesign │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── codebook.c │ │ ├── estimate.c │ │ ├── print.c │ │ ├── tabledesign.c │ │ └── tabledesign.h ├── seq_decoder.py ├── skyconv.c ├── sm64tools.LICENSE ├── stb │ ├── stb_image.h │ └── stb_image_write.h ├── textconv.c ├── utf8.c ├── utf8.h ├── util │ ├── audiofile_strip.patch │ ├── generate_armips_cpp.py │ └── generate_audiofile_cpp.py ├── utils.c └── utils.h ├── undefined_syms.txt ├── util.mk └── vita ├── README.md ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg.png │ ├── startup.png │ └── template.xml └── shaders ├── 00000045_f.cg ├── 00000045_v.cg ├── 00000200_f.cg ├── 00000200_v.cg ├── 0000038D_f.cg ├── 0000038D_v.cg ├── 00000551_f.cg ├── 00000551_v.cg ├── 00000A00_f.cg ├── 00000A00_v.cg ├── 01045045_f.cg ├── 01045045_v.cg ├── 01045A00_f.cg ├── 01045A00_v.cg ├── 01081081_f.cg ├── 01081081_v.cg ├── 01141045_f.cg ├── 01141045_v.cg ├── 01200045_f.cg ├── 01200045_v.cg ├── 01200200_f.cg ├── 01200200_v.cg ├── 0120038D_f.cg ├── 0120038D_v.cg ├── 01200A00_f.cg ├── 01200A00_v.cg ├── 01A00045_f.cg ├── 01A00045_v.cg ├── 01A00A00_f.cg ├── 01A00A00_v.cg ├── 01A00A6F_f.cg ├── 01A00A6F_v.cg ├── 03200045_f.cg ├── 03200045_v.cg ├── 03200200_f.cg ├── 03200200_v.cg ├── 03200A00_f.cg ├── 03200A00_v.cg ├── 05045045_f.cg ├── 05045045_v.cg ├── 05200200_f.cg ├── 05200200_v.cg ├── 05A00A00_f.cg ├── 05A00A00_v.cg ├── 07A00A00_f.cg ├── 07A00A00_v.cg ├── 09200045_f.cg ├── 09200045_v.cg ├── 09200200_f.cg ├── 09200200_v.cg ├── 0920038D_f.cg └── 0920038D_v.cg /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/CHANGES -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/Doxyfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/Makefile.split -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/README.md -------------------------------------------------------------------------------- /actors/amp/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "animation.inc.c" 2 | -------------------------------------------------------------------------------- /actors/amp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/amp/geo.inc.c -------------------------------------------------------------------------------- /actors/amp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/amp/model.inc.c -------------------------------------------------------------------------------- /actors/bird/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bird/geo.inc.c -------------------------------------------------------------------------------- /actors/bird/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bird/model.inc.c -------------------------------------------------------------------------------- /actors/blargg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/blargg/geo.inc.c -------------------------------------------------------------------------------- /actors/blargg/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/blargg/model.inc.c -------------------------------------------------------------------------------- /actors/blue_fish/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0301C298.inc.c" 2 | -------------------------------------------------------------------------------- /actors/blue_fish/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/blue_fish/geo.inc.c -------------------------------------------------------------------------------- /actors/bobomb/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bobomb/geo.inc.c -------------------------------------------------------------------------------- /actors/bobomb/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bobomb/model.inc.c -------------------------------------------------------------------------------- /actors/bomb/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bomb/geo.inc.c -------------------------------------------------------------------------------- /actors/bomb/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bomb/model.inc.c -------------------------------------------------------------------------------- /actors/boo/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/boo/geo.inc.c -------------------------------------------------------------------------------- /actors/boo/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/boo/model.inc.c -------------------------------------------------------------------------------- /actors/book/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/book/geo.inc.c -------------------------------------------------------------------------------- /actors/book/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/book/model.inc.c -------------------------------------------------------------------------------- /actors/bookend/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bookend/geo.inc.c -------------------------------------------------------------------------------- /actors/bookend/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bookend/model.inc.c -------------------------------------------------------------------------------- /actors/bowser/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bowser/geo.inc.c -------------------------------------------------------------------------------- /actors/bowser/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bowser/model.inc.c -------------------------------------------------------------------------------- /actors/bub/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0601233C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/bub/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bub/geo.inc.c -------------------------------------------------------------------------------- /actors/bub/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bub/model.inc.c -------------------------------------------------------------------------------- /actors/bubba/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bubba/geo.inc.c -------------------------------------------------------------------------------- /actors/bubba/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bubba/model.inc.c -------------------------------------------------------------------------------- /actors/bubble/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bubble/geo.inc.c -------------------------------------------------------------------------------- /actors/bubble/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bubble/model.inc.c -------------------------------------------------------------------------------- /actors/bully/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bully/geo.inc.c -------------------------------------------------------------------------------- /actors/bully/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/bully/model.inc.c -------------------------------------------------------------------------------- /actors/butterfly/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/butterfly/geo.inc.c -------------------------------------------------------------------------------- /actors/cannon_lid/geo.inc.c: -------------------------------------------------------------------------------- 1 | // Empty geo script 2 | UNUSED static const u64 cannon_lid_unused_1 = 0; 3 | -------------------------------------------------------------------------------- /actors/capswitch/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/capswitch/geo.inc.c -------------------------------------------------------------------------------- /actors/chain_chomp/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_06025160.inc.c" 2 | -------------------------------------------------------------------------------- /actors/chair/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500576C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/chair/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/chair/geo.inc.c -------------------------------------------------------------------------------- /actors/chair/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/chair/model.inc.c -------------------------------------------------------------------------------- /actors/chuckya/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/chuckya/geo.inc.c -------------------------------------------------------------------------------- /actors/chuckya/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/chuckya/model.inc.c -------------------------------------------------------------------------------- /actors/coin/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/coin/geo.inc.c -------------------------------------------------------------------------------- /actors/coin/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/coin/model.inc.c -------------------------------------------------------------------------------- /actors/common0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/common0.c -------------------------------------------------------------------------------- /actors/common0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/common0.h -------------------------------------------------------------------------------- /actors/common0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/common0_geo.c -------------------------------------------------------------------------------- /actors/common1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/common1.c -------------------------------------------------------------------------------- /actors/common1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/common1.h -------------------------------------------------------------------------------- /actors/common1_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/common1_geo.c -------------------------------------------------------------------------------- /actors/cyan_fish/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0600E24C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/cyan_fish/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/cyan_fish/geo.inc.c -------------------------------------------------------------------------------- /actors/dirt/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/dirt/geo.inc.c -------------------------------------------------------------------------------- /actors/dirt/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/dirt/model.inc.c -------------------------------------------------------------------------------- /actors/door/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/door/geo.inc.c -------------------------------------------------------------------------------- /actors/door/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/door/model.inc.c -------------------------------------------------------------------------------- /actors/dorrie/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/dorrie/geo.inc.c -------------------------------------------------------------------------------- /actors/dorrie/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/dorrie/model.inc.c -------------------------------------------------------------------------------- /actors/explosion/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/explosion/geo.inc.c -------------------------------------------------------------------------------- /actors/eyerok/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/eyerok/geo.inc.c -------------------------------------------------------------------------------- /actors/eyerok/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/eyerok/model.inc.c -------------------------------------------------------------------------------- /actors/flame/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/flame/geo.inc.c -------------------------------------------------------------------------------- /actors/flame/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/flame/model.inc.c -------------------------------------------------------------------------------- /actors/flyguy/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_08011A4C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/flyguy/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/flyguy/geo.inc.c -------------------------------------------------------------------------------- /actors/flyguy/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/flyguy/model.inc.c -------------------------------------------------------------------------------- /actors/fwoosh/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/fwoosh/geo.inc.c -------------------------------------------------------------------------------- /actors/fwoosh/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/fwoosh/model.inc.c -------------------------------------------------------------------------------- /actors/goomba/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0801DA34.inc.c" 2 | -------------------------------------------------------------------------------- /actors/goomba/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/goomba/geo.inc.c -------------------------------------------------------------------------------- /actors/goomba/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/goomba/model.inc.c -------------------------------------------------------------------------------- /actors/group0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group0.c -------------------------------------------------------------------------------- /actors/group0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group0.h -------------------------------------------------------------------------------- /actors/group0_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group0_geo.c -------------------------------------------------------------------------------- /actors/group1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group1.c -------------------------------------------------------------------------------- /actors/group1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group1.h -------------------------------------------------------------------------------- /actors/group10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group10.c -------------------------------------------------------------------------------- /actors/group10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group10.h -------------------------------------------------------------------------------- /actors/group10_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group10_geo.c -------------------------------------------------------------------------------- /actors/group11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group11.c -------------------------------------------------------------------------------- /actors/group11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group11.h -------------------------------------------------------------------------------- /actors/group11_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group11_geo.c -------------------------------------------------------------------------------- /actors/group12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group12.c -------------------------------------------------------------------------------- /actors/group12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group12.h -------------------------------------------------------------------------------- /actors/group12_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group12_geo.c -------------------------------------------------------------------------------- /actors/group13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group13.c -------------------------------------------------------------------------------- /actors/group13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group13.h -------------------------------------------------------------------------------- /actors/group13_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group13_geo.c -------------------------------------------------------------------------------- /actors/group14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group14.c -------------------------------------------------------------------------------- /actors/group14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group14.h -------------------------------------------------------------------------------- /actors/group14_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group14_geo.c -------------------------------------------------------------------------------- /actors/group15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group15.c -------------------------------------------------------------------------------- /actors/group15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group15.h -------------------------------------------------------------------------------- /actors/group15_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group15_geo.c -------------------------------------------------------------------------------- /actors/group16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group16.c -------------------------------------------------------------------------------- /actors/group16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group16.h -------------------------------------------------------------------------------- /actors/group16_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group16_geo.c -------------------------------------------------------------------------------- /actors/group17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group17.c -------------------------------------------------------------------------------- /actors/group17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group17.h -------------------------------------------------------------------------------- /actors/group17_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group17_geo.c -------------------------------------------------------------------------------- /actors/group1_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group1_geo.c -------------------------------------------------------------------------------- /actors/group2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group2.c -------------------------------------------------------------------------------- /actors/group2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group2.h -------------------------------------------------------------------------------- /actors/group2_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group2_geo.c -------------------------------------------------------------------------------- /actors/group3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group3.c -------------------------------------------------------------------------------- /actors/group3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group3.h -------------------------------------------------------------------------------- /actors/group3_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group3_geo.c -------------------------------------------------------------------------------- /actors/group4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group4.c -------------------------------------------------------------------------------- /actors/group4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group4.h -------------------------------------------------------------------------------- /actors/group4_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group4_geo.c -------------------------------------------------------------------------------- /actors/group5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group5.c -------------------------------------------------------------------------------- /actors/group5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group5.h -------------------------------------------------------------------------------- /actors/group5_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group5_geo.c -------------------------------------------------------------------------------- /actors/group6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group6.c -------------------------------------------------------------------------------- /actors/group6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group6.h -------------------------------------------------------------------------------- /actors/group6_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group6_geo.c -------------------------------------------------------------------------------- /actors/group7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group7.c -------------------------------------------------------------------------------- /actors/group7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group7.h -------------------------------------------------------------------------------- /actors/group7_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group7_geo.c -------------------------------------------------------------------------------- /actors/group8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group8.c -------------------------------------------------------------------------------- /actors/group8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group8.h -------------------------------------------------------------------------------- /actors/group8_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group8_geo.c -------------------------------------------------------------------------------- /actors/group9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group9.c -------------------------------------------------------------------------------- /actors/group9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group9.h -------------------------------------------------------------------------------- /actors/group9_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/group9_geo.c -------------------------------------------------------------------------------- /actors/heart/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/heart/geo.inc.c -------------------------------------------------------------------------------- /actors/heart/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/heart/model.inc.c -------------------------------------------------------------------------------- /actors/heave_ho/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/heave_ho/geo.inc.c -------------------------------------------------------------------------------- /actors/hoot/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/hoot/geo.inc.c -------------------------------------------------------------------------------- /actors/hoot/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/hoot/model.inc.c -------------------------------------------------------------------------------- /actors/klepto/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/klepto/geo.inc.c -------------------------------------------------------------------------------- /actors/klepto/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/klepto/model.inc.c -------------------------------------------------------------------------------- /actors/koopa/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/koopa/geo.inc.c -------------------------------------------------------------------------------- /actors/koopa/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/koopa/model.inc.c -------------------------------------------------------------------------------- /actors/lakitu_cameraman/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_060058E0.inc.c" 2 | -------------------------------------------------------------------------------- /actors/leaves/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/leaves/geo.inc.c -------------------------------------------------------------------------------- /actors/leaves/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/leaves/model.inc.c -------------------------------------------------------------------------------- /actors/mad_piano/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mad_piano/geo.inc.c -------------------------------------------------------------------------------- /actors/manta/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_05008CFC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/manta/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/manta/geo.inc.c -------------------------------------------------------------------------------- /actors/manta/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/manta/model.inc.c -------------------------------------------------------------------------------- /actors/mario/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mario/geo.inc.c -------------------------------------------------------------------------------- /actors/mario/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mario/model.inc.c -------------------------------------------------------------------------------- /actors/mario_cap/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mario_cap/geo.inc.c -------------------------------------------------------------------------------- /actors/metal_box/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/metal_box/geo.inc.c -------------------------------------------------------------------------------- /actors/mips/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mips/geo.inc.c -------------------------------------------------------------------------------- /actors/mips/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mips/model.inc.c -------------------------------------------------------------------------------- /actors/mist/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mist/geo.inc.c -------------------------------------------------------------------------------- /actors/mist/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mist/model.inc.c -------------------------------------------------------------------------------- /actors/moneybag/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/moneybag/geo.inc.c -------------------------------------------------------------------------------- /actors/mr_i_iris/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/mr_i_iris/geo.inc.c -------------------------------------------------------------------------------- /actors/number/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/number/geo.inc.c -------------------------------------------------------------------------------- /actors/peach/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/peach/geo.inc.c -------------------------------------------------------------------------------- /actors/peach/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/peach/model.inc.c -------------------------------------------------------------------------------- /actors/pebble/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/pebble/model.inc.c -------------------------------------------------------------------------------- /actors/penguin/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/penguin/geo.inc.c -------------------------------------------------------------------------------- /actors/penguin/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/penguin/model.inc.c -------------------------------------------------------------------------------- /actors/pokey/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/pokey/geo.inc.c -------------------------------------------------------------------------------- /actors/pokey/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/pokey/model.inc.c -------------------------------------------------------------------------------- /actors/sand/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/sand/model.inc.c -------------------------------------------------------------------------------- /actors/scuttlebug/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0601504C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/seaweed/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0600A4BC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/seaweed/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/seaweed/geo.inc.c -------------------------------------------------------------------------------- /actors/seaweed/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/seaweed/model.inc.c -------------------------------------------------------------------------------- /actors/skeeter/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/skeeter/geo.inc.c -------------------------------------------------------------------------------- /actors/skeeter/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/skeeter/model.inc.c -------------------------------------------------------------------------------- /actors/small_key/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/small_key/geo.inc.c -------------------------------------------------------------------------------- /actors/smoke/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/smoke/model.inc.c -------------------------------------------------------------------------------- /actors/snowman/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/snowman/geo.inc.c -------------------------------------------------------------------------------- /actors/snowman/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/snowman/model.inc.c -------------------------------------------------------------------------------- /actors/snufit/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/snufit/geo.inc.c -------------------------------------------------------------------------------- /actors/snufit/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/snufit/model.inc.c -------------------------------------------------------------------------------- /actors/sparkle/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/sparkle/geo.inc.c -------------------------------------------------------------------------------- /actors/sparkle/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/sparkle/model.inc.c -------------------------------------------------------------------------------- /actors/spindrift/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_050006AC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/spindrift/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/spindrift/geo.inc.c -------------------------------------------------------------------------------- /actors/spiny/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_05016E94.inc.c" 2 | -------------------------------------------------------------------------------- /actors/spiny/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/spiny/geo.inc.c -------------------------------------------------------------------------------- /actors/spiny/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/spiny/model.inc.c -------------------------------------------------------------------------------- /actors/spiny_egg/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_050157CC.inc.c" 2 | -------------------------------------------------------------------------------- /actors/spiny_egg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/spiny_egg/geo.inc.c -------------------------------------------------------------------------------- /actors/star/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/star/geo.inc.c -------------------------------------------------------------------------------- /actors/star/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/star/model.inc.c -------------------------------------------------------------------------------- /actors/sushi/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500AE3C.inc.c" 2 | -------------------------------------------------------------------------------- /actors/sushi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/sushi/geo.inc.c -------------------------------------------------------------------------------- /actors/sushi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/sushi/model.inc.c -------------------------------------------------------------------------------- /actors/swoop/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/swoop/geo.inc.c -------------------------------------------------------------------------------- /actors/swoop/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/swoop/model.inc.c -------------------------------------------------------------------------------- /actors/thwomp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/thwomp/geo.inc.c -------------------------------------------------------------------------------- /actors/thwomp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/thwomp/model.inc.c -------------------------------------------------------------------------------- /actors/toad/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/toad/geo.inc.c -------------------------------------------------------------------------------- /actors/toad/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/toad/model.inc.c -------------------------------------------------------------------------------- /actors/tornado/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/tornado/geo.inc.c -------------------------------------------------------------------------------- /actors/tornado/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/tornado/model.inc.c -------------------------------------------------------------------------------- /actors/tree/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/tree/geo.inc.c -------------------------------------------------------------------------------- /actors/tree/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/tree/model.inc.c -------------------------------------------------------------------------------- /actors/ukiki/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/ukiki/geo.inc.c -------------------------------------------------------------------------------- /actors/ukiki/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/ukiki/model.inc.c -------------------------------------------------------------------------------- /actors/unagi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/unagi/geo.inc.c -------------------------------------------------------------------------------- /actors/unagi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/unagi/model.inc.c -------------------------------------------------------------------------------- /actors/warp_pipe/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/warp_pipe/geo.inc.c -------------------------------------------------------------------------------- /actors/water_ring/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_06013F64.inc.c" 2 | -------------------------------------------------------------------------------- /actors/whomp/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/whomp/geo.inc.c -------------------------------------------------------------------------------- /actors/whomp/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/whomp/model.inc.c -------------------------------------------------------------------------------- /actors/wiggler_body/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500C760.inc.c" 2 | -------------------------------------------------------------------------------- /actors/wiggler_head/anims/data.inc.c: -------------------------------------------------------------------------------- 1 | #include "anim_0500EC74.inc.c" 2 | -------------------------------------------------------------------------------- /actors/yoshi/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/yoshi/geo.inc.c -------------------------------------------------------------------------------- /actors/yoshi/model.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/yoshi/model.inc.c -------------------------------------------------------------------------------- /actors/yoshi_egg/geo.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/actors/yoshi_egg/geo.inc.c -------------------------------------------------------------------------------- /asm/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/asm/boot.s -------------------------------------------------------------------------------- /asm/decompress.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/asm/decompress.s -------------------------------------------------------------------------------- /asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/asm/entry.s -------------------------------------------------------------------------------- /asm/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/asm/rom_header.s -------------------------------------------------------------------------------- /assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets.json -------------------------------------------------------------------------------- /assets/anims/anim_00.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_00.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_03.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_03.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_04.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_04.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_05.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_05.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_06.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_06.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_09.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_09.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_0A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_0A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_0D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_0D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_0E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_0E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_11.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_11.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_12.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_12.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_13.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_13.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_14.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_14.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_15.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_15.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_16.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_16.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_17.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_17.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_18.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_18.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_19.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_19.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_1A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_1B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_1C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_1D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_1E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_1F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_1F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_20.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_20.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_21.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_21.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_22.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_22.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_23.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_23.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_24.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_24.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_25.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_25.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_26.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_26.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_27.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_27.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_28.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_28.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_29.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_29.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_2A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_2B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_2E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_2F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_2F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_30.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_30.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_31.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_31.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_32.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_32.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_33.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_33.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_34.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_34.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_35.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_35.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_36.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_36.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_37.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_37.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_38.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_38.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_39.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_39.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_3A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_3B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_3E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_3F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_3F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_40.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_40.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_41.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_41.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_42.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_42.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_43.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_43.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_44.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_44.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_47.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_47.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_48.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_48.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_49.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_49.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_4A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_4B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_4C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_4F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_4F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_50.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_50.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_51.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_51.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_52.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_52.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_53.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_53.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_54.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_54.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_55.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_55.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_58.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_58.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_59.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_59.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_5A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_5B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_5C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_5D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_5E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_5F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_5F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_60.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_60.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_61.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_61.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_62.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_62.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_63.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_63.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_64.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_64.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_65.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_65.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_66.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_66.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_67.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_67.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_68.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_68.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_69.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_69.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_6A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_6A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_6B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_6B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_6C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_6C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_6D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_6D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_6E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_6E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_71.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_71.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_74.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_74.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_75.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_75.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_76.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_76.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_77.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_77.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_78.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_78.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_79.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_79.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_7A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_7A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_7B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_7B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_7C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_7C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_7D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_7D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_7E.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_7E.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_7F.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_7F.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_80.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_80.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_81.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_81.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_82.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_82.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_83.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_83.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_84.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_84.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_85.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_85.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_86.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_86.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_87.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_87.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_8A.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_8A.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_8B.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_8B.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_8C.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_8C.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_8D.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_8D.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_90.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_90.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_91.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_91.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_92.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_92.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_93.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_93.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_94.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_94.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_95.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_95.inc.c -------------------------------------------------------------------------------- /assets/anims/anim_96.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/anims/anim_96.inc.c -------------------------------------------------------------------------------- /assets/demo_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/assets/demo_data.json -------------------------------------------------------------------------------- /bin/cave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/cave.c -------------------------------------------------------------------------------- /bin/debug_level_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/debug_level_select.c -------------------------------------------------------------------------------- /bin/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/effect.c -------------------------------------------------------------------------------- /bin/eu/translation_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/eu/translation_de.c -------------------------------------------------------------------------------- /bin/eu/translation_en.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/eu/translation_en.c -------------------------------------------------------------------------------- /bin/eu/translation_fr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/eu/translation_fr.c -------------------------------------------------------------------------------- /bin/fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/fire.c -------------------------------------------------------------------------------- /bin/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/generic.c -------------------------------------------------------------------------------- /bin/grass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/grass.c -------------------------------------------------------------------------------- /bin/inside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/inside.c -------------------------------------------------------------------------------- /bin/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/machine.c -------------------------------------------------------------------------------- /bin/mountain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/mountain.c -------------------------------------------------------------------------------- /bin/outside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/outside.c -------------------------------------------------------------------------------- /bin/segment2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/segment2.c -------------------------------------------------------------------------------- /bin/sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/sky.c -------------------------------------------------------------------------------- /bin/snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/snow.c -------------------------------------------------------------------------------- /bin/spooky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/spooky.c -------------------------------------------------------------------------------- /bin/title_screen_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/title_screen_bg.c -------------------------------------------------------------------------------- /bin/water.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/bin/water.c -------------------------------------------------------------------------------- /charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/charmap.txt -------------------------------------------------------------------------------- /charmap_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/charmap_menu.txt -------------------------------------------------------------------------------- /data/behavior_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/data/behavior_data.c -------------------------------------------------------------------------------- /diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/diff.py -------------------------------------------------------------------------------- /diff_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/diff_settings.py -------------------------------------------------------------------------------- /doxygen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/doxygen/logo.png -------------------------------------------------------------------------------- /enhancements/60fps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/enhancements/60fps.patch -------------------------------------------------------------------------------- /enhancements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/enhancements/README.md -------------------------------------------------------------------------------- /enhancements/crash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/enhancements/crash.patch -------------------------------------------------------------------------------- /enhancements/fps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/enhancements/fps.patch -------------------------------------------------------------------------------- /extract_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/extract_assets.py -------------------------------------------------------------------------------- /first-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/first-diff.py -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/format.sh -------------------------------------------------------------------------------- /include/PR/R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/R4300.h -------------------------------------------------------------------------------- /include/PR/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/abi.h -------------------------------------------------------------------------------- /include/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/gbi.h -------------------------------------------------------------------------------- /include/PR/gs2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/gs2dex.h -------------------------------------------------------------------------------- /include/PR/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/gu.h -------------------------------------------------------------------------------- /include/PR/libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/libaudio.h -------------------------------------------------------------------------------- /include/PR/libultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/libultra.h -------------------------------------------------------------------------------- /include/PR/mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/mbi.h -------------------------------------------------------------------------------- /include/PR/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os.h -------------------------------------------------------------------------------- /include/PR/os_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_ai.h -------------------------------------------------------------------------------- /include/PR/os_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_cache.h -------------------------------------------------------------------------------- /include/PR/os_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_cont.h -------------------------------------------------------------------------------- /include/PR/os_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_eeprom.h -------------------------------------------------------------------------------- /include/PR/os_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_internal.h -------------------------------------------------------------------------------- /include/PR/os_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_libc.h -------------------------------------------------------------------------------- /include/PR/os_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_message.h -------------------------------------------------------------------------------- /include/PR/os_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_misc.h -------------------------------------------------------------------------------- /include/PR/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_pi.h -------------------------------------------------------------------------------- /include/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_rdp.h -------------------------------------------------------------------------------- /include/PR/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_thread.h -------------------------------------------------------------------------------- /include/PR/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_time.h -------------------------------------------------------------------------------- /include/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_tlb.h -------------------------------------------------------------------------------- /include/PR/os_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/os_vi.h -------------------------------------------------------------------------------- /include/PR/rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/rcp.h -------------------------------------------------------------------------------- /include/PR/sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/sptask.h -------------------------------------------------------------------------------- /include/PR/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/ucode.h -------------------------------------------------------------------------------- /include/PR/ultratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/PR/ultratypes.h -------------------------------------------------------------------------------- /include/behavior_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/behavior_data.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/config.h -------------------------------------------------------------------------------- /include/course_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/course_table.h -------------------------------------------------------------------------------- /include/dialog_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/dialog_ids.h -------------------------------------------------------------------------------- /include/eu_translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/eu_translation.h -------------------------------------------------------------------------------- /include/geo_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/geo_commands.h -------------------------------------------------------------------------------- /include/gfx_dimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/gfx_dimensions.h -------------------------------------------------------------------------------- /include/helper_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/helper_macros.h -------------------------------------------------------------------------------- /include/level_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/level_commands.h -------------------------------------------------------------------------------- /include/level_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/level_table.h -------------------------------------------------------------------------------- /include/libc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/libc/math.h -------------------------------------------------------------------------------- /include/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/libc/stdarg.h -------------------------------------------------------------------------------- /include/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/libc/stddef.h -------------------------------------------------------------------------------- /include/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/libc/stdio.h -------------------------------------------------------------------------------- /include/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/libc/stdlib.h -------------------------------------------------------------------------------- /include/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/libc/string.h -------------------------------------------------------------------------------- /include/macro_presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/macro_presets.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/model_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/model_ids.h -------------------------------------------------------------------------------- /include/object_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/object_fields.h -------------------------------------------------------------------------------- /include/platform_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/platform_info.h -------------------------------------------------------------------------------- /include/segments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/segments.h -------------------------------------------------------------------------------- /include/seq_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/seq_ids.h -------------------------------------------------------------------------------- /include/seq_macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/seq_macros.inc -------------------------------------------------------------------------------- /include/sm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/sm64.h -------------------------------------------------------------------------------- /include/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/sounds.h -------------------------------------------------------------------------------- /include/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/textures.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/types.h -------------------------------------------------------------------------------- /include/ultra64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/include/ultra64.h -------------------------------------------------------------------------------- /levels/bbh/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bbh/geo.c -------------------------------------------------------------------------------- /levels/bbh/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bbh/header.h -------------------------------------------------------------------------------- /levels/bbh/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bbh/level.yaml -------------------------------------------------------------------------------- /levels/bbh/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bbh/leveldata.c -------------------------------------------------------------------------------- /levels/bbh/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bbh/script.c -------------------------------------------------------------------------------- /levels/bbh/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bbh/texture.inc.c -------------------------------------------------------------------------------- /levels/bbh/tumbling_platform_far/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/bitdw/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitdw/geo.c -------------------------------------------------------------------------------- /levels/bitdw/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitdw/header.h -------------------------------------------------------------------------------- /levels/bitdw/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitdw/level.yaml -------------------------------------------------------------------------------- /levels/bitdw/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitdw/leveldata.c -------------------------------------------------------------------------------- /levels/bitdw/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitdw/script.c -------------------------------------------------------------------------------- /levels/bitfs/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitfs/geo.c -------------------------------------------------------------------------------- /levels/bitfs/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitfs/header.h -------------------------------------------------------------------------------- /levels/bitfs/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitfs/level.yaml -------------------------------------------------------------------------------- /levels/bitfs/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitfs/leveldata.c -------------------------------------------------------------------------------- /levels/bitfs/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bitfs/script.c -------------------------------------------------------------------------------- /levels/bits/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bits/geo.c -------------------------------------------------------------------------------- /levels/bits/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bits/header.h -------------------------------------------------------------------------------- /levels/bits/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bits/level.yaml -------------------------------------------------------------------------------- /levels/bits/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bits/leveldata.c -------------------------------------------------------------------------------- /levels/bits/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bits/script.c -------------------------------------------------------------------------------- /levels/bob/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bob/geo.c -------------------------------------------------------------------------------- /levels/bob/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bob/header.h -------------------------------------------------------------------------------- /levels/bob/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bob/level.yaml -------------------------------------------------------------------------------- /levels/bob/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bob/leveldata.c -------------------------------------------------------------------------------- /levels/bob/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bob/script.c -------------------------------------------------------------------------------- /levels/bob/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bob/texture.inc.c -------------------------------------------------------------------------------- /levels/bowser_1/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_1/geo.c -------------------------------------------------------------------------------- /levels/bowser_1/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_1/header.h -------------------------------------------------------------------------------- /levels/bowser_1/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_1/script.c -------------------------------------------------------------------------------- /levels/bowser_2/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_2/geo.c -------------------------------------------------------------------------------- /levels/bowser_2/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_2/header.h -------------------------------------------------------------------------------- /levels/bowser_2/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_2/script.c -------------------------------------------------------------------------------- /levels/bowser_3/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_3/geo.c -------------------------------------------------------------------------------- /levels/bowser_3/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_3/header.h -------------------------------------------------------------------------------- /levels/bowser_3/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/bowser_3/script.c -------------------------------------------------------------------------------- /levels/castle_courtyard/texture.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/castle_inside/clock_hour_hand/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/castle_inside/clock_minute_hand/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ccm/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ccm/geo.c -------------------------------------------------------------------------------- /levels/ccm/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ccm/header.h -------------------------------------------------------------------------------- /levels/ccm/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ccm/level.yaml -------------------------------------------------------------------------------- /levels/ccm/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ccm/leveldata.c -------------------------------------------------------------------------------- /levels/ccm/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ccm/script.c -------------------------------------------------------------------------------- /levels/ccm/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ccm/texture.inc.c -------------------------------------------------------------------------------- /levels/cotmc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/cotmc/geo.c -------------------------------------------------------------------------------- /levels/cotmc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/cotmc/header.h -------------------------------------------------------------------------------- /levels/cotmc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/cotmc/level.yaml -------------------------------------------------------------------------------- /levels/cotmc/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/cotmc/leveldata.c -------------------------------------------------------------------------------- /levels/cotmc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/cotmc/script.c -------------------------------------------------------------------------------- /levels/course_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/course_defines.h -------------------------------------------------------------------------------- /levels/ddd/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ddd/geo.c -------------------------------------------------------------------------------- /levels/ddd/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ddd/header.h -------------------------------------------------------------------------------- /levels/ddd/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ddd/level.yaml -------------------------------------------------------------------------------- /levels/ddd/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ddd/leveldata.c -------------------------------------------------------------------------------- /levels/ddd/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ddd/script.c -------------------------------------------------------------------------------- /levels/ddd/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ddd/texture.inc.c -------------------------------------------------------------------------------- /levels/ending/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ending/geo.c -------------------------------------------------------------------------------- /levels/ending/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ending/header.h -------------------------------------------------------------------------------- /levels/ending/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ending/script.c -------------------------------------------------------------------------------- /levels/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/entry.c -------------------------------------------------------------------------------- /levels/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/entry.h -------------------------------------------------------------------------------- /levels/hmc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/hmc/geo.c -------------------------------------------------------------------------------- /levels/hmc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/hmc/header.h -------------------------------------------------------------------------------- /levels/hmc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/hmc/level.yaml -------------------------------------------------------------------------------- /levels/hmc/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/hmc/leveldata.c -------------------------------------------------------------------------------- /levels/hmc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/hmc/script.c -------------------------------------------------------------------------------- /levels/hmc/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/hmc/texture.inc.c -------------------------------------------------------------------------------- /levels/intro/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/intro/geo.c -------------------------------------------------------------------------------- /levels/intro/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/intro/header.h -------------------------------------------------------------------------------- /levels/intro/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/intro/leveldata.c -------------------------------------------------------------------------------- /levels/intro/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/intro/script.c -------------------------------------------------------------------------------- /levels/jrb/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/jrb/geo.c -------------------------------------------------------------------------------- /levels/jrb/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/jrb/header.h -------------------------------------------------------------------------------- /levels/jrb/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/jrb/level.yaml -------------------------------------------------------------------------------- /levels/jrb/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/jrb/leveldata.c -------------------------------------------------------------------------------- /levels/jrb/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/jrb/script.c -------------------------------------------------------------------------------- /levels/jrb/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/jrb/texture.inc.c -------------------------------------------------------------------------------- /levels/level_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/level_defines.h -------------------------------------------------------------------------------- /levels/level_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/level_rules.mk -------------------------------------------------------------------------------- /levels/lll/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/lll/geo.c -------------------------------------------------------------------------------- /levels/lll/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/lll/header.h -------------------------------------------------------------------------------- /levels/lll/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/lll/level.yaml -------------------------------------------------------------------------------- /levels/lll/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/lll/leveldata.c -------------------------------------------------------------------------------- /levels/lll/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/lll/script.c -------------------------------------------------------------------------------- /levels/lll/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/lll/texture.inc.c -------------------------------------------------------------------------------- /levels/menu/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/menu/geo.c -------------------------------------------------------------------------------- /levels/menu/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/menu/header.h -------------------------------------------------------------------------------- /levels/menu/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/menu/leveldata.c -------------------------------------------------------------------------------- /levels/menu/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/menu/script.c -------------------------------------------------------------------------------- /levels/pss/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/pss/geo.c -------------------------------------------------------------------------------- /levels/pss/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/pss/header.h -------------------------------------------------------------------------------- /levels/pss/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/pss/level.yaml -------------------------------------------------------------------------------- /levels/pss/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/pss/leveldata.c -------------------------------------------------------------------------------- /levels/pss/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/pss/script.c -------------------------------------------------------------------------------- /levels/pss/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/pss/texture.inc.c -------------------------------------------------------------------------------- /levels/rr/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/rr/geo.c -------------------------------------------------------------------------------- /levels/rr/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/rr/header.h -------------------------------------------------------------------------------- /levels/rr/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/rr/level.yaml -------------------------------------------------------------------------------- /levels/rr/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/rr/leveldata.c -------------------------------------------------------------------------------- /levels/rr/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/rr/script.c -------------------------------------------------------------------------------- /levels/rr/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/rr/texture.inc.c -------------------------------------------------------------------------------- /levels/sa/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sa/geo.c -------------------------------------------------------------------------------- /levels/sa/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sa/header.h -------------------------------------------------------------------------------- /levels/sa/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sa/level.yaml -------------------------------------------------------------------------------- /levels/sa/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sa/leveldata.c -------------------------------------------------------------------------------- /levels/sa/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sa/script.c -------------------------------------------------------------------------------- /levels/sa/texture.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/scripts.c -------------------------------------------------------------------------------- /levels/scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/scripts.h -------------------------------------------------------------------------------- /levels/sl/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sl/geo.c -------------------------------------------------------------------------------- /levels/sl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sl/header.h -------------------------------------------------------------------------------- /levels/sl/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sl/level.yaml -------------------------------------------------------------------------------- /levels/sl/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sl/leveldata.c -------------------------------------------------------------------------------- /levels/sl/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sl/script.c -------------------------------------------------------------------------------- /levels/sl/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/sl/texture.inc.c -------------------------------------------------------------------------------- /levels/ssl/eyerok_col/geo.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ssl/eyerok_col/model.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ssl/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ssl/geo.c -------------------------------------------------------------------------------- /levels/ssl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ssl/header.h -------------------------------------------------------------------------------- /levels/ssl/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ssl/level.yaml -------------------------------------------------------------------------------- /levels/ssl/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ssl/leveldata.c -------------------------------------------------------------------------------- /levels/ssl/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ssl/script.c -------------------------------------------------------------------------------- /levels/ssl/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ssl/texture.inc.c -------------------------------------------------------------------------------- /levels/thi/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/thi/geo.c -------------------------------------------------------------------------------- /levels/thi/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/thi/header.h -------------------------------------------------------------------------------- /levels/thi/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/thi/level.yaml -------------------------------------------------------------------------------- /levels/thi/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/thi/leveldata.c -------------------------------------------------------------------------------- /levels/thi/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/thi/script.c -------------------------------------------------------------------------------- /levels/thi/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/thi/texture.inc.c -------------------------------------------------------------------------------- /levels/totwc/cloud/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/totwc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/totwc/geo.c -------------------------------------------------------------------------------- /levels/totwc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/totwc/header.h -------------------------------------------------------------------------------- /levels/totwc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/totwc/level.yaml -------------------------------------------------------------------------------- /levels/totwc/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/totwc/leveldata.c -------------------------------------------------------------------------------- /levels/totwc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/totwc/script.c -------------------------------------------------------------------------------- /levels/ttc/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttc/geo.c -------------------------------------------------------------------------------- /levels/ttc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttc/header.h -------------------------------------------------------------------------------- /levels/ttc/large_gear/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ttc/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttc/level.yaml -------------------------------------------------------------------------------- /levels/ttc/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttc/leveldata.c -------------------------------------------------------------------------------- /levels/ttc/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttc/script.c -------------------------------------------------------------------------------- /levels/ttc/small_gear/collision.inc.c: -------------------------------------------------------------------------------- 1 | // Blank File 2 | 3 | -------------------------------------------------------------------------------- /levels/ttc/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttc/texture.inc.c -------------------------------------------------------------------------------- /levels/ttm/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttm/geo.c -------------------------------------------------------------------------------- /levels/ttm/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttm/header.h -------------------------------------------------------------------------------- /levels/ttm/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttm/level.yaml -------------------------------------------------------------------------------- /levels/ttm/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttm/leveldata.c -------------------------------------------------------------------------------- /levels/ttm/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttm/script.c -------------------------------------------------------------------------------- /levels/ttm/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/ttm/texture.inc.c -------------------------------------------------------------------------------- /levels/vcutm/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/vcutm/geo.c -------------------------------------------------------------------------------- /levels/vcutm/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/vcutm/header.h -------------------------------------------------------------------------------- /levels/vcutm/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/vcutm/level.yaml -------------------------------------------------------------------------------- /levels/vcutm/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/vcutm/leveldata.c -------------------------------------------------------------------------------- /levels/vcutm/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/vcutm/script.c -------------------------------------------------------------------------------- /levels/wdw/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wdw/geo.c -------------------------------------------------------------------------------- /levels/wdw/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wdw/header.h -------------------------------------------------------------------------------- /levels/wdw/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wdw/level.yaml -------------------------------------------------------------------------------- /levels/wdw/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wdw/leveldata.c -------------------------------------------------------------------------------- /levels/wdw/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wdw/script.c -------------------------------------------------------------------------------- /levels/wdw/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wdw/texture.inc.c -------------------------------------------------------------------------------- /levels/wf/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wf/geo.c -------------------------------------------------------------------------------- /levels/wf/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wf/header.h -------------------------------------------------------------------------------- /levels/wf/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wf/level.yaml -------------------------------------------------------------------------------- /levels/wf/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wf/leveldata.c -------------------------------------------------------------------------------- /levels/wf/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wf/script.c -------------------------------------------------------------------------------- /levels/wf/texture.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wf/texture.inc.c -------------------------------------------------------------------------------- /levels/wmotr/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wmotr/geo.c -------------------------------------------------------------------------------- /levels/wmotr/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wmotr/header.h -------------------------------------------------------------------------------- /levels/wmotr/level.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wmotr/level.yaml -------------------------------------------------------------------------------- /levels/wmotr/leveldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wmotr/leveldata.c -------------------------------------------------------------------------------- /levels/wmotr/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/levels/wmotr/script.c -------------------------------------------------------------------------------- /lib/PR/f3dex/F3DEX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/PR/f3dex/F3DEX.bin -------------------------------------------------------------------------------- /lib/PR/f3dex/F3DLX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/PR/f3dex/F3DLX.bin -------------------------------------------------------------------------------- /lib/PR/f3dex/L3DEX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/PR/f3dex/L3DEX.bin -------------------------------------------------------------------------------- /lib/PR/f3dex2/F3DEX2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/PR/f3dex2/F3DEX2.bin -------------------------------------------------------------------------------- /lib/PR/f3dex2/L3DEX2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/PR/f3dex2/L3DEX2.bin -------------------------------------------------------------------------------- /lib/PR/s2dex/S2DEX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/PR/s2dex/S2DEX.bin -------------------------------------------------------------------------------- /lib/asm/__osDisableInt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osDisableInt.s -------------------------------------------------------------------------------- /lib/asm/__osGetCause.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osGetCause.s -------------------------------------------------------------------------------- /lib/asm/__osGetSR.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osGetSR.s -------------------------------------------------------------------------------- /lib/asm/__osProbeTLB.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osProbeTLB.s -------------------------------------------------------------------------------- /lib/asm/__osRestoreInt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osRestoreInt.s -------------------------------------------------------------------------------- /lib/asm/__osSetCompare.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osSetCompare.s -------------------------------------------------------------------------------- /lib/asm/__osSetFpcCsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osSetFpcCsr.s -------------------------------------------------------------------------------- /lib/asm/__osSetSR.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/__osSetSR.s -------------------------------------------------------------------------------- /lib/asm/bcopy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/bcopy.s -------------------------------------------------------------------------------- /lib/asm/bzero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/bzero.s -------------------------------------------------------------------------------- /lib/asm/llmuldiv_gcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/llmuldiv_gcc.s -------------------------------------------------------------------------------- /lib/asm/osGetCount.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/osGetCount.s -------------------------------------------------------------------------------- /lib/asm/osInvalDCache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/osInvalDCache.s -------------------------------------------------------------------------------- /lib/asm/osInvalICache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/osInvalICache.s -------------------------------------------------------------------------------- /lib/asm/osMapTLB.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/osMapTLB.s -------------------------------------------------------------------------------- /lib/asm/osMapTLBRdb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/osMapTLBRdb.s -------------------------------------------------------------------------------- /lib/asm/osSetIntMask.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/osSetIntMask.s -------------------------------------------------------------------------------- /lib/asm/osUnmapTLBAll.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/osUnmapTLBAll.s -------------------------------------------------------------------------------- /lib/asm/parameters.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/parameters.s -------------------------------------------------------------------------------- /lib/asm/sqrtf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/asm/sqrtf.s -------------------------------------------------------------------------------- /lib/rsp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/rsp.s -------------------------------------------------------------------------------- /lib/src/D_802F4380.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/D_802F4380.c -------------------------------------------------------------------------------- /lib/src/EU_D_802f4330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/EU_D_802f4330.c -------------------------------------------------------------------------------- /lib/src/NaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/NaN.c -------------------------------------------------------------------------------- /lib/src/_Ldtob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/_Ldtob.c -------------------------------------------------------------------------------- /lib/src/_Litob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/_Litob.c -------------------------------------------------------------------------------- /lib/src/_Printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/_Printf.c -------------------------------------------------------------------------------- /lib/src/__osAtomicDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/__osAtomicDec.c -------------------------------------------------------------------------------- /lib/src/__osDevMgrMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/__osDevMgrMain.c -------------------------------------------------------------------------------- /lib/src/__osSpSetPc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/__osSpSetPc.c -------------------------------------------------------------------------------- /lib/src/__osViInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/__osViInit.c -------------------------------------------------------------------------------- /lib/src/alBnkfNew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/alBnkfNew.c -------------------------------------------------------------------------------- /lib/src/bstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/bstring.h -------------------------------------------------------------------------------- /lib/src/contramread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/contramread.c -------------------------------------------------------------------------------- /lib/src/contramwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/contramwrite.c -------------------------------------------------------------------------------- /lib/src/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/controller.h -------------------------------------------------------------------------------- /lib/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/crc.c -------------------------------------------------------------------------------- /lib/src/epidma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/epidma.c -------------------------------------------------------------------------------- /lib/src/func_802F4A20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/func_802F4A20.c -------------------------------------------------------------------------------- /lib/src/func_802F71F0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/func_802F71F0.c -------------------------------------------------------------------------------- /lib/src/guLookAtRef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guLookAtRef.c -------------------------------------------------------------------------------- /lib/src/guMtxF2L.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guMtxF2L.c -------------------------------------------------------------------------------- /lib/src/guNormalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guNormalize.c -------------------------------------------------------------------------------- /lib/src/guOrthoF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guOrthoF.c -------------------------------------------------------------------------------- /lib/src/guPerspectiveF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guPerspectiveF.c -------------------------------------------------------------------------------- /lib/src/guRotateF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guRotateF.c -------------------------------------------------------------------------------- /lib/src/guScaleF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guScaleF.c -------------------------------------------------------------------------------- /lib/src/guTranslateF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/guTranslateF.c -------------------------------------------------------------------------------- /lib/src/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/hardware.h -------------------------------------------------------------------------------- /lib/src/kdebugserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/kdebugserver.c -------------------------------------------------------------------------------- /lib/src/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/ldiv.c -------------------------------------------------------------------------------- /lib/src/leointerrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/leointerrupt.c -------------------------------------------------------------------------------- /lib/src/math/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/math/cosf.c -------------------------------------------------------------------------------- /lib/src/math/llconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/math/llconv.c -------------------------------------------------------------------------------- /lib/src/math/llmuldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/math/llmuldiv.c -------------------------------------------------------------------------------- /lib/src/math/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/math/sinf.c -------------------------------------------------------------------------------- /lib/src/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/motor.c -------------------------------------------------------------------------------- /lib/src/new_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/new_func.h -------------------------------------------------------------------------------- /lib/src/osAi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osAi.h -------------------------------------------------------------------------------- /lib/src/osAiGetLength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osAiGetLength.c -------------------------------------------------------------------------------- /lib/src/osCartRomInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osCartRomInit.c -------------------------------------------------------------------------------- /lib/src/osContInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osContInit.c -------------------------------------------------------------------------------- /lib/src/osContInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osContInternal.h -------------------------------------------------------------------------------- /lib/src/osCreateThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osCreateThread.c -------------------------------------------------------------------------------- /lib/src/osDriveRomInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osDriveRomInit.c -------------------------------------------------------------------------------- /lib/src/osEepromProbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osEepromProbe.c -------------------------------------------------------------------------------- /lib/src/osEepromRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osEepromRead.c -------------------------------------------------------------------------------- /lib/src/osEepromWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osEepromWrite.c -------------------------------------------------------------------------------- /lib/src/osGetThreadPri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osGetThreadPri.c -------------------------------------------------------------------------------- /lib/src/osGetTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osGetTime.c -------------------------------------------------------------------------------- /lib/src/osInitialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osInitialize.c -------------------------------------------------------------------------------- /lib/src/osJamMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osJamMesg.c -------------------------------------------------------------------------------- /lib/src/osLeoDiskInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osLeoDiskInit.c -------------------------------------------------------------------------------- /lib/src/osPfsIsPlug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osPfsIsPlug.c -------------------------------------------------------------------------------- /lib/src/osPiRawReadIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osPiRawReadIo.c -------------------------------------------------------------------------------- /lib/src/osPiStartDma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osPiStartDma.c -------------------------------------------------------------------------------- /lib/src/osRecvMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osRecvMesg.c -------------------------------------------------------------------------------- /lib/src/osSendMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osSendMesg.c -------------------------------------------------------------------------------- /lib/src/osSetEventMesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osSetEventMesg.c -------------------------------------------------------------------------------- /lib/src/osSetThreadPri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osSetThreadPri.c -------------------------------------------------------------------------------- /lib/src/osSetTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osSetTime.c -------------------------------------------------------------------------------- /lib/src/osSetTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osSetTimer.c -------------------------------------------------------------------------------- /lib/src/osSpTaskLoadGo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osSpTaskLoadGo.c -------------------------------------------------------------------------------- /lib/src/osSpTaskYield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osSpTaskYield.c -------------------------------------------------------------------------------- /lib/src/osStartThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osStartThread.c -------------------------------------------------------------------------------- /lib/src/osTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osTimer.c -------------------------------------------------------------------------------- /lib/src/osViBlack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osViBlack.c -------------------------------------------------------------------------------- /lib/src/osViData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osViData.c -------------------------------------------------------------------------------- /lib/src/osViSetEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osViSetEvent.c -------------------------------------------------------------------------------- /lib/src/osViSetMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osViSetMode.c -------------------------------------------------------------------------------- /lib/src/osViSwapBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osViSwapBuffer.c -------------------------------------------------------------------------------- /lib/src/osViTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osViTable.c -------------------------------------------------------------------------------- /lib/src/osint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/osint.h -------------------------------------------------------------------------------- /lib/src/pfsgetstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/pfsgetstatus.c -------------------------------------------------------------------------------- /lib/src/piint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/piint.h -------------------------------------------------------------------------------- /lib/src/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/printf.h -------------------------------------------------------------------------------- /lib/src/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/sprintf.c -------------------------------------------------------------------------------- /lib/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/lib/src/string.c -------------------------------------------------------------------------------- /rename_sym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/rename_sym.sh -------------------------------------------------------------------------------- /rsp/audio.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/rsp/audio.s -------------------------------------------------------------------------------- /rsp/fast3d.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/rsp/fast3d.s -------------------------------------------------------------------------------- /rsp/gbi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/rsp/gbi.inc -------------------------------------------------------------------------------- /rsp/rsp_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/rsp/rsp_defs.inc -------------------------------------------------------------------------------- /rsp/rspboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/rsp/rspboot.s -------------------------------------------------------------------------------- /sm64.eu.sha1: -------------------------------------------------------------------------------- 1 | 4ac5721683d0e0b6bbb561b58a71740845dceea9 build/eu/sm64.eu.z64 2 | -------------------------------------------------------------------------------- /sm64.jp.sha1: -------------------------------------------------------------------------------- 1 | 8a20a5c83d6ceb0f0506cfc9fa20d8f438cafe51 build/jp/sm64.jp.z64 2 | -------------------------------------------------------------------------------- /sm64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/sm64.ld -------------------------------------------------------------------------------- /sm64.sh.sha1: -------------------------------------------------------------------------------- 1 | 3f319ae697533a255a1003d09202379d78d5a2e0 build/sh/sm64.sh.z64 2 | -------------------------------------------------------------------------------- /sm64.us.sha1: -------------------------------------------------------------------------------- 1 | 9bef1128717f958171a4afac3ed78ee2bb4e86ce build/us/sm64.us.z64 2 | -------------------------------------------------------------------------------- /sound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/sound/README.md -------------------------------------------------------------------------------- /sound/sequences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/sound/sequences.json -------------------------------------------------------------------------------- /sound/sound_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/sound/sound_data.c -------------------------------------------------------------------------------- /src/audio/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/data.c -------------------------------------------------------------------------------- /src/audio/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/data.h -------------------------------------------------------------------------------- /src/audio/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/effects.c -------------------------------------------------------------------------------- /src/audio/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/effects.h -------------------------------------------------------------------------------- /src/audio/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/external.c -------------------------------------------------------------------------------- /src/audio/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/external.h -------------------------------------------------------------------------------- /src/audio/globals_start.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | u64 gAudioGlobalsStartMarker; 4 | -------------------------------------------------------------------------------- /src/audio/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/heap.c -------------------------------------------------------------------------------- /src/audio/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/heap.h -------------------------------------------------------------------------------- /src/audio/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/internal.h -------------------------------------------------------------------------------- /src/audio/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/load.c -------------------------------------------------------------------------------- /src/audio/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/load.h -------------------------------------------------------------------------------- /src/audio/load_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/load_sh.c -------------------------------------------------------------------------------- /src/audio/playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/playback.c -------------------------------------------------------------------------------- /src/audio/playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/playback.h -------------------------------------------------------------------------------- /src/audio/port_eu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/port_eu.c -------------------------------------------------------------------------------- /src/audio/port_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/port_sh.c -------------------------------------------------------------------------------- /src/audio/seqplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/seqplayer.c -------------------------------------------------------------------------------- /src/audio/seqplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/seqplayer.h -------------------------------------------------------------------------------- /src/audio/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/synthesis.c -------------------------------------------------------------------------------- /src/audio/synthesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/synthesis.h -------------------------------------------------------------------------------- /src/audio/synthesis_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/audio/synthesis_sh.c -------------------------------------------------------------------------------- /src/buffers/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/buffers/buffers.c -------------------------------------------------------------------------------- /src/buffers/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/buffers/buffers.h -------------------------------------------------------------------------------- /src/buffers/zbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/buffers/zbuffer.c -------------------------------------------------------------------------------- /src/buffers/zbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/buffers/zbuffer.h -------------------------------------------------------------------------------- /src/engine/geo_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/engine/geo_layout.c -------------------------------------------------------------------------------- /src/engine/geo_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/engine/geo_layout.h -------------------------------------------------------------------------------- /src/engine/graph_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/engine/graph_node.c -------------------------------------------------------------------------------- /src/engine/graph_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/engine/graph_node.h -------------------------------------------------------------------------------- /src/engine/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/engine/math_util.c -------------------------------------------------------------------------------- /src/engine/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/engine/math_util.h -------------------------------------------------------------------------------- /src/game/area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/area.c -------------------------------------------------------------------------------- /src/game/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/area.h -------------------------------------------------------------------------------- /src/game/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/camera.c -------------------------------------------------------------------------------- /src/game/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/camera.h -------------------------------------------------------------------------------- /src/game/crash_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/crash_screen.c -------------------------------------------------------------------------------- /src/game/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/debug.c -------------------------------------------------------------------------------- /src/game/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/debug.h -------------------------------------------------------------------------------- /src/game/debug_course.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/debug_course.c -------------------------------------------------------------------------------- /src/game/debug_course.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/debug_course.h -------------------------------------------------------------------------------- /src/game/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/decompress.h -------------------------------------------------------------------------------- /src/game/envfx_bubbles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/envfx_bubbles.c -------------------------------------------------------------------------------- /src/game/envfx_bubbles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/envfx_bubbles.h -------------------------------------------------------------------------------- /src/game/envfx_snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/envfx_snow.c -------------------------------------------------------------------------------- /src/game/envfx_snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/envfx_snow.h -------------------------------------------------------------------------------- /src/game/game_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/game_init.c -------------------------------------------------------------------------------- /src/game/game_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/game_init.h -------------------------------------------------------------------------------- /src/game/geo_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/geo_misc.c -------------------------------------------------------------------------------- /src/game/geo_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/geo_misc.h -------------------------------------------------------------------------------- /src/game/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/hud.c -------------------------------------------------------------------------------- /src/game/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/hud.h -------------------------------------------------------------------------------- /src/game/ingame_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/ingame_menu.c -------------------------------------------------------------------------------- /src/game/ingame_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/ingame_menu.h -------------------------------------------------------------------------------- /src/game/interaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/interaction.c -------------------------------------------------------------------------------- /src/game/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/interaction.h -------------------------------------------------------------------------------- /src/game/level_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/level_geo.c -------------------------------------------------------------------------------- /src/game/level_geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/level_geo.h -------------------------------------------------------------------------------- /src/game/level_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/level_update.c -------------------------------------------------------------------------------- /src/game/level_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/level_update.h -------------------------------------------------------------------------------- /src/game/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/main.c -------------------------------------------------------------------------------- /src/game/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/main.h -------------------------------------------------------------------------------- /src/game/mario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/mario.c -------------------------------------------------------------------------------- /src/game/mario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/mario.h -------------------------------------------------------------------------------- /src/game/mario_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/mario_misc.c -------------------------------------------------------------------------------- /src/game/mario_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/mario_misc.h -------------------------------------------------------------------------------- /src/game/mario_step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/mario_step.c -------------------------------------------------------------------------------- /src/game/mario_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/mario_step.h -------------------------------------------------------------------------------- /src/game/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/memory.c -------------------------------------------------------------------------------- /src/game/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/memory.h -------------------------------------------------------------------------------- /src/game/obj_behaviors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/obj_behaviors.c -------------------------------------------------------------------------------- /src/game/obj_behaviors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/obj_behaviors.h -------------------------------------------------------------------------------- /src/game/paintings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/paintings.c -------------------------------------------------------------------------------- /src/game/paintings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/paintings.h -------------------------------------------------------------------------------- /src/game/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/print.c -------------------------------------------------------------------------------- /src/game/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/print.h -------------------------------------------------------------------------------- /src/game/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/profiler.c -------------------------------------------------------------------------------- /src/game/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/profiler.h -------------------------------------------------------------------------------- /src/game/rumble_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/rumble_init.c -------------------------------------------------------------------------------- /src/game/rumble_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/rumble_init.h -------------------------------------------------------------------------------- /src/game/save_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/save_file.c -------------------------------------------------------------------------------- /src/game/save_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/save_file.h -------------------------------------------------------------------------------- /src/game/segment2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/segment2.h -------------------------------------------------------------------------------- /src/game/segment7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/segment7.h -------------------------------------------------------------------------------- /src/game/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/shadow.c -------------------------------------------------------------------------------- /src/game/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/shadow.h -------------------------------------------------------------------------------- /src/game/skybox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/skybox.c -------------------------------------------------------------------------------- /src/game/skybox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/skybox.h -------------------------------------------------------------------------------- /src/game/sound_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/sound_init.c -------------------------------------------------------------------------------- /src/game/sound_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/sound_init.h -------------------------------------------------------------------------------- /src/game/spawn_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/spawn_object.c -------------------------------------------------------------------------------- /src/game/spawn_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/spawn_object.h -------------------------------------------------------------------------------- /src/game/spawn_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/spawn_sound.c -------------------------------------------------------------------------------- /src/game/spawn_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/game/spawn_sound.h -------------------------------------------------------------------------------- /src/goddard/gd_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_macros.h -------------------------------------------------------------------------------- /src/goddard/gd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_main.c -------------------------------------------------------------------------------- /src/goddard/gd_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_main.h -------------------------------------------------------------------------------- /src/goddard/gd_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_math.c -------------------------------------------------------------------------------- /src/goddard/gd_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_math.h -------------------------------------------------------------------------------- /src/goddard/gd_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_memory.c -------------------------------------------------------------------------------- /src/goddard/gd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_memory.h -------------------------------------------------------------------------------- /src/goddard/gd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/gd_types.h -------------------------------------------------------------------------------- /src/goddard/joints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/joints.c -------------------------------------------------------------------------------- /src/goddard/joints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/joints.h -------------------------------------------------------------------------------- /src/goddard/objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/objects.c -------------------------------------------------------------------------------- /src/goddard/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/objects.h -------------------------------------------------------------------------------- /src/goddard/old_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/old_menu.c -------------------------------------------------------------------------------- /src/goddard/old_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/old_menu.h -------------------------------------------------------------------------------- /src/goddard/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/particles.c -------------------------------------------------------------------------------- /src/goddard/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/particles.h -------------------------------------------------------------------------------- /src/goddard/renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/renderer.c -------------------------------------------------------------------------------- /src/goddard/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/renderer.h -------------------------------------------------------------------------------- /src/goddard/sfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/sfx.c -------------------------------------------------------------------------------- /src/goddard/sfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/sfx.h -------------------------------------------------------------------------------- /src/goddard/skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/skin.c -------------------------------------------------------------------------------- /src/goddard/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/goddard/skin.h -------------------------------------------------------------------------------- /src/menu/file_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/file_select.c -------------------------------------------------------------------------------- /src/menu/file_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/file_select.h -------------------------------------------------------------------------------- /src/menu/intro_geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/intro_geo.c -------------------------------------------------------------------------------- /src/menu/intro_geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/intro_geo.h -------------------------------------------------------------------------------- /src/menu/star_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/star_select.c -------------------------------------------------------------------------------- /src/menu/star_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/star_select.h -------------------------------------------------------------------------------- /src/menu/title_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/title_screen.c -------------------------------------------------------------------------------- /src/menu/title_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/menu/title_screen.h -------------------------------------------------------------------------------- /src/pc/audio/audio_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/audio/audio_api.h -------------------------------------------------------------------------------- /src/pc/audio/audio_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/audio/audio_sdl.c -------------------------------------------------------------------------------- /src/pc/audio/audio_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/audio/audio_sdl.h -------------------------------------------------------------------------------- /src/pc/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/compat.h -------------------------------------------------------------------------------- /src/pc/configfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/configfile.c -------------------------------------------------------------------------------- /src/pc/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/configfile.h -------------------------------------------------------------------------------- /src/pc/controller/wup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/controller/wup.c -------------------------------------------------------------------------------- /src/pc/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/dlmalloc.c -------------------------------------------------------------------------------- /src/pc/gfx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/LICENSE.txt -------------------------------------------------------------------------------- /src/pc/gfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/README.md -------------------------------------------------------------------------------- /src/pc/gfx/dxsdk/d3d12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/dxsdk/d3d12.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_cc.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_cc.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_dummy.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_dummy.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dxgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_dxgi.cpp -------------------------------------------------------------------------------- /src/pc/gfx/gfx_dxgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_dxgi.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_glx.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_glx.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_opengl.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_opengl.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_pc.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_pc.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_sdl.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_sdl2.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_vita.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_vita.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_vita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_vita.h -------------------------------------------------------------------------------- /src/pc/gfx/gfx_vitagl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_vitagl.c -------------------------------------------------------------------------------- /src/pc/gfx/gfx_vitagl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/gfx/gfx_vitagl.h -------------------------------------------------------------------------------- /src/pc/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/mixer.c -------------------------------------------------------------------------------- /src/pc/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/mixer.h -------------------------------------------------------------------------------- /src/pc/pc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/src/pc/pc_main.c -------------------------------------------------------------------------------- /text/de/courses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/de/courses.h -------------------------------------------------------------------------------- /text/de/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/de/dialogs.h -------------------------------------------------------------------------------- /text/define_text.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/define_text.inc.c -------------------------------------------------------------------------------- /text/fr/courses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/fr/courses.h -------------------------------------------------------------------------------- /text/fr/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/fr/dialogs.h -------------------------------------------------------------------------------- /text/jp/courses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/jp/courses.h -------------------------------------------------------------------------------- /text/jp/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/jp/dialogs.h -------------------------------------------------------------------------------- /text/us/courses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/us/courses.h -------------------------------------------------------------------------------- /text/us/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/text/us/dialogs.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/aifc_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/aifc_decode.c -------------------------------------------------------------------------------- /tools/apply_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/apply_patch.sh -------------------------------------------------------------------------------- /tools/armips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/armips.cpp -------------------------------------------------------------------------------- /tools/assemble_sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/assemble_sound.py -------------------------------------------------------------------------------- /tools/audiofile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/audiofile/Makefile -------------------------------------------------------------------------------- /tools/calc_bss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/calc_bss.sh -------------------------------------------------------------------------------- /tools/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/clang-tidy.sh -------------------------------------------------------------------------------- /tools/create_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/create_patch.sh -------------------------------------------------------------------------------- /tools/gen_asset_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/gen_asset_list.cpp -------------------------------------------------------------------------------- /tools/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/hashtable.c -------------------------------------------------------------------------------- /tools/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/hashtable.h -------------------------------------------------------------------------------- /tools/libmio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/libmio0.c -------------------------------------------------------------------------------- /tools/libmio0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/libmio0.h -------------------------------------------------------------------------------- /tools/n64cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/n64cksum.c -------------------------------------------------------------------------------- /tools/n64cksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/n64cksum.h -------------------------------------------------------------------------------- /tools/n64graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/n64graphics.c -------------------------------------------------------------------------------- /tools/n64graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/n64graphics.h -------------------------------------------------------------------------------- /tools/patch_elf_32bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/patch_elf_32bit.c -------------------------------------------------------------------------------- /tools/patch_libmalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/patch_libmalloc.py -------------------------------------------------------------------------------- /tools/rasm2armips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/rasm2armips.py -------------------------------------------------------------------------------- /tools/revert_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/revert_patch.sh -------------------------------------------------------------------------------- /tools/seq_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/seq_decoder.py -------------------------------------------------------------------------------- /tools/skyconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/skyconv.c -------------------------------------------------------------------------------- /tools/sm64tools.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/sm64tools.LICENSE -------------------------------------------------------------------------------- /tools/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/stb/stb_image.h -------------------------------------------------------------------------------- /tools/textconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/textconv.c -------------------------------------------------------------------------------- /tools/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/utf8.c -------------------------------------------------------------------------------- /tools/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/utf8.h -------------------------------------------------------------------------------- /tools/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/utils.c -------------------------------------------------------------------------------- /tools/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/tools/utils.h -------------------------------------------------------------------------------- /undefined_syms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/undefined_syms.txt -------------------------------------------------------------------------------- /util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/util.mk -------------------------------------------------------------------------------- /vita/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/vita/README.md -------------------------------------------------------------------------------- /vita/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martepato/sm64-vita/HEAD/vita/sce_sys/icon0.png --------------------------------------------------------------------------------