Change of starting condition for potential testing purposes of another person

This commit is contained in:
hugova 2025-03-09 23:53:33 +01:00
parent a617d91183
commit de2d597612
2 changed files with 9 additions and 9 deletions

View file

@ -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

View file

@ -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: