2014-11-29 14:18:48 +01:00
|
|
|
|
2015-08-29 15:58:57 +02:00
|
|
|
.export PLOT
|
2014-11-29 14:18:48 +01:00
|
|
|
|
2015-08-29 15:58:57 +02:00
|
|
|
.include "pce.inc"
|
2015-09-19 15:37:39 +02:00
|
|
|
.include "extzp.inc"
|
2014-11-29 14:18:48 +01:00
|
|
|
|
2015-11-26 15:06:20 -05:00
|
|
|
PLOT: bcs @getpos
|
2014-11-29 14:18:48 +01:00
|
|
|
|
2015-08-29 15:58:57 +02:00
|
|
|
tya
|
2015-09-20 12:18:41 +02:00
|
|
|
;clc ; already cleared
|
2015-11-26 15:06:20 -05:00
|
|
|
adc plotlo,x
|
2015-08-29 15:58:57 +02:00
|
|
|
sta SCREEN_PTR
|
2014-11-29 14:18:48 +01:00
|
|
|
|
2015-11-26 15:06:20 -05:00
|
|
|
cla
|
|
|
|
adc plothi,x
|
2015-08-29 15:58:57 +02:00
|
|
|
sta SCREEN_PTR+1
|
2014-11-29 14:18:48 +01:00
|
|
|
@getpos:
|
2015-08-29 15:58:57 +02:00
|
|
|
ldx CURS_Y
|
|
|
|
ldy CURS_X
|
|
|
|
rts
|
2014-11-29 14:18:48 +01:00
|
|
|
|
2015-10-02 10:50:22 -04:00
|
|
|
.rodata
|
2015-09-04 14:14:17 +02:00
|
|
|
|
2015-11-26 15:06:20 -05:00
|
|
|
plotlo: .repeat screenrows,line
|
2015-08-29 15:58:57 +02:00
|
|
|
.byte <($0000+(line*$80))
|
|
|
|
.endrepeat
|
2014-11-29 14:18:48 +01:00
|
|
|
|
2015-11-26 15:06:20 -05:00
|
|
|
plothi: .repeat screenrows,line
|
2015-08-29 15:58:57 +02:00
|
|
|
.byte >($0000+(line*$80))
|
|
|
|
.endrepeat
|