From de2d59761252acece480547b15dc7c4a79876963 Mon Sep 17 00:00:00 2001 From: hugova Date: Sun, 9 Mar 2025 23:53:33 +0100 Subject: [PATCH] Change of starting condition for potential testing purposes of another person --- wip-hugo/routines/memory/pixel_draw.s | 16 ++++++++-------- wip-hugo/source.s | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/wip-hugo/routines/memory/pixel_draw.s b/wip-hugo/routines/memory/pixel_draw.s index 6843f22..a6e1276 100755 --- a/wip-hugo/routines/memory/pixel_draw.s +++ b/wip-hugo/routines/memory/pixel_draw.s @@ -3,13 +3,13 @@ ;;Screen print. Draws a pixel at a specified position. ;; Destroys A X Y .proc pixel_draw; Draws a pixel at [Y = FB , X = FC, FD]. Y = 0 - 320, X= 0 - 200 - Y_pos = $FB - X_pos = $FCFD - byte_to_paint = $FE - btp_mem_pos =$494A; byte to paint memory position - C = $7071 - B =$7273 - ;; X = X_pos (mod 8) + Y_pos = $FB + X_pos = $FCFD + byte_to_paint = $FE + btp_mem_pos =$494A; byte to paint memory position + C = $7071 + B =$7273 + ;; X = X_pos (mod 8) LDA >X_pos ; X (mod 8) AND #%00000111 TAX @@ -92,4 +92,4 @@ end__: ORA (>btp_mem_pos, X) STA (>btp_mem_pos, X) RTS - .endproc +.endproc diff --git a/wip-hugo/source.s b/wip-hugo/source.s index 7392a30..47b370b 100755 --- a/wip-hugo/source.s +++ b/wip-hugo/source.s @@ -2,7 +2,7 @@ .include "macros/timer.s" .include "STARTUP.s" -.include "routines/line/line_test.s" +.include "routines/line/line_test_time.s" ;;This is used by .s files to terminate nicely without reading includes at the end! exit: