From: Christian Groessler Date: Wed, 28 May 2014 22:18:22 +0000 (+0200) Subject: don't use scrcode for numbers X-Git-Tag: V2.15~57^2~9 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=245a69a043f8e798d4e6492edc7c4d7e8d79dfef;p=cc65 don't use scrcode for numbers --- diff --git a/libsrc/atari5200/cartname.s b/libsrc/atari5200/cartname.s index e8478362b..f8e6c6ba2 100644 --- a/libsrc/atari5200/cartname.s +++ b/libsrc/atari5200/cartname.s @@ -8,4 +8,6 @@ .segment "CARTNAME" - scrcode " cc65 compiled" + scrcode " cc" + .byte '6' + 32, '5' + 32 ; use playfield 1 + scrcode " compiled" diff --git a/libsrc/atari5200/cartyear.s b/libsrc/atari5200/cartyear.s index 3269b5cb3..4efb24f5e 100644 --- a/libsrc/atari5200/cartyear.s +++ b/libsrc/atari5200/cartyear.s @@ -2,11 +2,8 @@ ; ; Christian Groessler, 01-Mar-2014 -.include "atari5200.mac" - .export __CART_YEAR__: absolute = 1 .segment "CARTYEAR" - scrcode "98" - + .byte '9' + 32,'8' + 32 ; "98", but using playfield 1