From 245a69a043f8e798d4e6492edc7c4d7e8d79dfef Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Thu, 29 May 2014 00:18:22 +0200 Subject: [PATCH] don't use scrcode for numbers --- libsrc/atari5200/cartname.s | 4 +++- libsrc/atari5200/cartyear.s | 5 +---- 2 files changed, 4 insertions(+), 5 deletions(-) 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 -- 2.39.2