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
|
; Helper macro that converts and outputs one character
|
||||||
.macro _scrcode char
|
.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)
|
.if (char >= 0) .and (char <= 31)
|
||||||
.byte (char + 64)
|
.byte (char + 64)
|
||||||
.elseif (char >= 32) .and (char <= 95)
|
.elseif (char >= 32) .and (char <= 95)
|
||||||
@@ -17,6 +24,7 @@
|
|||||||
.else
|
.else
|
||||||
.error "scrcode: Character constant out of range"
|
.error "scrcode: Character constant out of range"
|
||||||
.endif
|
.endif
|
||||||
|
.endif
|
||||||
.endmacro
|
.endmacro
|
||||||
|
|
||||||
.macro scrcode arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
|
.macro scrcode arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
|
||||||
@@ -56,4 +64,3 @@
|
|||||||
; Call the macro recursively with the remaining args
|
; Call the macro recursively with the remaining args
|
||||||
scrcode arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
|
scrcode arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9
|
||||||
.endmacro
|
.endmacro
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user