Language…
13 users online: anonimzwx,  BeeKaay, codfish1002, DanMario24YT, HaruMKT, hhuxy, koffe190, lean4, margot, ModernKiwi, Pizzagamer9791,  Ringo, SysDataSoft - Guests: 307 - Bots: 319
Users: 64,795 (2,375 active)
Latest user: mathew

End Level if Up is pressed

SMW Blocks → End Level if Up is pressed

Submission Details

Comments (1)

Nariofan101 Link
Exits the level if up, and ONLY up, is pressed. That means no holding the run button.
To fix, change:
-----
Main:
LDA $15 ;is up
CMP #$08 ;pressed
BNE Return
---to:
Main:
LDA $15 ;is up
AND #$08 ;pressed
BEQ Return
-----

This does not play a level end sequence at all (probably intentional, exactly what I wanted it to do).