2002-06-22 21:40:24 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 22.06.2002
|
|
|
|
;
|
|
|
|
; Helper function for tgi_line and tgi_lineto. Pops/stores X2/Y2.
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
|
|
|
|
.import popax
|
|
|
|
.importzp ptr3, ptr4
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc tgi_linepop
|
|
|
|
|
2002-06-22 21:40:24 +00:00
|
|
|
sta ptr4 ; Y2
|
|
|
|
stx ptr4+1
|
|
|
|
sta _tgi_cury
|
|
|
|
stx _tgi_cury+1
|
|
|
|
jsr popax
|
|
|
|
sta ptr3 ; X2
|
|
|
|
stx ptr3+1
|
|
|
|
sta _tgi_curx
|
2002-06-22 21:46:32 +00:00
|
|
|
stx _tgi_curx+1
|
2002-06-22 21:40:24 +00:00
|
|
|
rts
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.endproc
|
2002-06-22 21:40:24 +00:00
|
|
|
|