mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 03:04:31 +00:00
380f5ce51d
git-svn-id: svn://svn.cc65.org/cc65/trunk@1740 b7a2c559-68d2-44c3-8de9-860c34a00d81
26 lines
424 B
ArmAsm
26 lines
424 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2002-12-12
|
|
;
|
|
; PLOT replacement function for the PETs
|
|
;
|
|
|
|
.export PLOT
|
|
.import plot ; from cputc.s
|
|
|
|
.include "pet.inc"
|
|
|
|
|
|
.proc PLOT
|
|
|
|
bcs @L1 ; Fetch values if carry set
|
|
sty CURS_X
|
|
stx CURS_Y
|
|
jsr plot
|
|
@L1: ldy CURS_X
|
|
ldx CURS_Y
|
|
rts
|
|
|
|
.endproc
|
|
|
|
|