Skip to content

Instantly share code, notes, and snippets.

@charasyn
Created November 8, 2021 02:45
Show Gist options
  • Save charasyn/48f0fdeef97df003780240eea87bfed0 to your computer and use it in GitHub Desktop.
Save charasyn/48f0fdeef97df003780240eea87bfed0 to your computer and use it in GitHub Desktop.
// Condense title screen letters together
// Useful if you are replacing the letters with your own graphics
// cooprocks123e, public domain
// Letter "E"
ROM[0xC422F8] = short -664 // Starting X pos
ROM[0xC422FB] = short 1187 // X velocity
ROM[0xC42301] = short 32 // Ending X pos
// Letter "A"
ROM[0xC42313] = short -504 // Starting X pos
ROM[0xC42316] = short 955 // X velocity
ROM[0xC4231C] = short 56 // Ending X pos
// Letter "R"
ROM[0xC4232E] = short -344 // Starting X pos
ROM[0xC42331] = short 723 // X velocity
ROM[0xC42337] = short 80 // Ending X pos
// Letter "T"
ROM[0xC42349] = short -184 // Starting X pos
ROM[0xC4234C] = short 491 // X velocity
ROM[0xC42352] = short 104 // Ending X pos
// Letter "H"
ROM[0xC42364] = short -24 // Starting X pos
ROM[0xC42367] = short 259 // X velocity
ROM[0xC4236D] = short 128 // Ending X pos
// Letter "O"
ROM[0xC4237F] = short 342 // Starting X pos
ROM[0xC42382] = short -325 // X velocity
ROM[0xC42388] = short 152 // Ending X pos
// Letter "U"
ROM[0xC4239A] = short 542 // Starting X pos
ROM[0xC4239D] = short -625 // X velocity
ROM[0xC423A3] = short 176 // Ending X pos
// Letter "N"
ROM[0xC423B5] = short 742 // Starting X pos
ROM[0xC423B8] = short -926 // X velocity
ROM[0xC423BE] = short 200 // Ending X pos
// Letter "D"
ROM[0xC423D0] = short 942 // Starting X pos
ROM[0xC423D3] = short -1226 // X velocity
ROM[0xC423D9] = short 224 // Ending X pos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment