From 3f7d73d2fcc5d6d63e1e57b281672bce3dbe118a Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Fri, 23 Feb 2024 21:57:39 +0100 Subject: [PATCH] small fix --- main.S | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.S b/main.S index 15f48f0..2a0f3d7 100644 --- a/main.S +++ b/main.S @@ -10,10 +10,10 @@ .section ".rodata","a" screendata: - .byte 0x00 - .byte 0x01 - .byte 0x02 - .byte 0x03 + .byte 0b00000001 + .byte 0b00000011 + .byte 0b00000111 + .byte 0b00001111 screendataend: .byte 0xff red: @@ -104,7 +104,7 @@ mainloop: ;; prepare next byte to handle by isr cmp.w r7,r8 jnz mainloop_prepare_next_byte - mov.w &screendata,r7 + mov.w #screendata,r7 mainloop_prepare_next_byte: mov.b @r7,r9 inc.w r7