aboutsummaryrefslogtreecommitdiff
path: root/include/asm.s
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-03-20 09:54:25 +0100
committerMiquel Sabaté Solà <mssola@mssola.com>2026-03-20 12:48:17 +0100
commit8f7b8ce3335404badc276445d899372839cdde71 (patch)
treec5422f80bc9e13f927965bfa655dd29d6bec5942 /include/asm.s
parent01f92b866eb4610b8d12008ea3389ac56052d20a (diff)
downloadjetpac.nes-8f7b8ce3335404badc276445d899372839cdde71.tar.gz
jetpac.nes-8f7b8ce3335404badc276445d899372839cdde71.zip
Add support for the SUSE coin
This is a coin that appears after going through a first cycle of levels and that allows the player to get a different game over screen than usual. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'include/asm.s')
-rw-r--r--include/asm.s5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/asm.s b/include/asm.s
index e44aedf..09229f9 100644
--- a/include/asm.s
+++ b/include/asm.s
@@ -1,8 +1,3 @@
-;; Sanity check for the 'LEVEL' build parameter.
-.if !(LEVEL >= 0 && LEVEL < 8)
- .error "You have defined a bad 'LEVEL' value, it should be between 0 and 7 (both included)"
-.endif
-
;; Jump And Link: jump to subroutine but use the return address that the caller
;; had whenever the given subroutine runs `rts`. In other words, "link" the
;; return address from the caller to the callee.