Uploaded November 2015 | Updated September 2026, 5 hours ago
// *********************************************************
// *** N64 Compatible Quick Start for Jedi's SM64 Editor ***
// *********************************************************
// (To be used with CajeASM by Tarek701)
// (Copy this text, paste and save in notepad, then use it as the ASM file)
// Super Mario 64 Editor (Unity) Output Settings:
// - Start Game in Current Level (Requires skipping Peach and Lakitu)
// - Skip Title Screen
// - Skip File Select Screen
// Then apply this ASM file in CajeASM. It does the following:
// - Fixes "Start Game in Current Level" by skipping Peach and Lakitu
// - Skips the Mario Head Screen at the beginning of the game (N64 Compatible)
// - Skips Level Intro Text
// Peach Skip
.org 0x6BD4
ADDIU R0, R0, $0009
// Lakitu Skip
.org 0x6D90
ADDIU S0, R0, $0000
// Skips Mario Head Screen at beginning of the game (but not after a Game Over)
.org 0x9114B8
TGEI T0, 0x0000
BNEZ R0, 0x00911CF0
// Level Intro Text Skips
.org 0x4B7C
ADDIU R0, R0, $4B3D
.org 0x4924
BEQ R0, R0, $00004940
// *********************************************************
// *** N64 Compatible Quick Start for Jedi's SM64 Editor ***
// *********************************************************
// (To be used with CajeASM by Tarek701)
// (Copy this text, paste and save in notepad, then use it as the ASM file)
// Super Mario 64 Editor (Unity) Output Settings:
// - Start Game in Current Level (Requires skipping Peach and Lakitu)
// - Skip Title Screen
// - Skip File Select Screen
// Then apply this ASM file in CajeASM. It does the following:
// - Fixes "Start Game in Current Level" by skipping Peach and Lakitu
// - Skips the Mario Head Screen at the beginning of the game (N64 Compatible)
// - Skips Level Intro Text
// Peach Skip
.org 0x6BD4
ADDIU R0, R0, $0009
// Lakitu Skip
.org 0x6D90
ADDIU S0, R0, $0000
// Skips Mario Head Screen at beginning of the game (but not after a Game Over)
.org 0x9114B8
TGEI T0, 0x0000
BNEZ R0, 0x00911CF0
// Level Intro Text Skips
.org 0x4B7C
ADDIU R0, R0, $4B3D
.org 0x4924
BEQ R0, R0, $00004940










