implemented conio peek functions for PCE target

This commit is contained in:
mrdudz
2020-07-14 14:22:29 +02:00
parent a4f1e37f0c
commit 1f2fdbd9b1
5 changed files with 143 additions and 2 deletions

28
libsrc/pce/cpeekcolor.s Normal file
View File

@@ -0,0 +1,28 @@
;
; 2020-07-14, Groepaz
;
; unsigned char cpeekcolor (void);
;
; get color from current position, do NOT advance cursor
.export _cpeekcolor
.include "pce.inc"
.include "extzp.inc"
_cpeekcolor:
st0 #VDC_MARR ; Memory-Address Read
ldy SCREEN_PTR
ldx SCREEN_PTR+1
sty VDC_DATA_LO
stx VDC_DATA_HI
st0 #VDC_VRR ; VRAM Read Register
lda VDC_DATA_HI
and #<~$02
lsr a
lsr a
lsr a
lsr a
ldx #0
rts