mirror of
https://github.com/cc65/cc65.git
synced 2025-08-09 13:25:06 +00:00
changed version, startup screen now not fine anymore
This commit is contained in:
@@ -2,6 +2,13 @@
|
||||
|
||||
; Helper macro that converts and outputs one character
|
||||
.macro _scrcode char
|
||||
.if 1
|
||||
.if (char >= 96) .and (char <= 127)
|
||||
.byte (char)
|
||||
.else
|
||||
.byte (char - 32)
|
||||
.endif
|
||||
.else
|
||||
.if (char >= 0) .and (char <= 31)
|
||||
.byte (char + 64)
|
||||
.elseif (char >= 32) .and (char <= 95)
|
||||
@@ -17,6 +24,7 @@
|
||||
.else
|
||||
.error "scrcode: Character constant out of range"
|
||||
.endif
|
||||
.endif
|
||||
.endmacro
|
||||
|
||||
.macro scrcode arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
|
||||
@@ -56,4 +64,3 @@
|
||||
; Call the macro recursively with the remaining args
|
||||
scrcode arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
|
||||
.endmacro
|
||||
|
||||
|
Reference in New Issue
Block a user