From 5d2e748bd4b7cc7d14b915001f34a43e902c38ca Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stephan=20M=C3=BChlstrasser?= Date: Thu, 12 Feb 2015 21:44:00 +0100 Subject: [PATCH] Don't use .byte in BSS segments, as value is lost anyway. --- libsrc/osic1p/extzp.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/osic1p/extzp.s b/libsrc/osic1p/extzp.s index e54e2b306..7dc8e3a53 100644 --- a/libsrc/osic1p/extzp.s +++ b/libsrc/osic1p/extzp.s @@ -11,8 +11,8 @@ .segment "EXTZP" : zeropage -CURS_X: .byte 0 -CURS_Y: .byte 0 +CURS_X: .res 1 +CURS_Y: .res 1 SCREEN_PTR: .res 2 ; size 4 -- 2.39.5