mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-27 14:28:06 +11:00
sms: implement linefeed in VDP
This commit is contained in:
parent
f9a8e6f180
commit
852c775b5b
12
blk/627
12
blk/627
@ -1,6 +1,14 @@
|
|||||||
|
: _cell! ( tilenum pos )
|
||||||
|
2 * 0x7800 OR _ctl ( tilenum ) _data 1 _zero ;
|
||||||
|
: _lf
|
||||||
|
XYPOS @ 0 ( blank ) OVER _cell!
|
||||||
|
[ VDP_COLS LITN ] / 1+ [ VDP_ROWS LITN ] MOD
|
||||||
|
[ VDP_COLS LITN ] * XYPOS !
|
||||||
|
;
|
||||||
: (emit)
|
: (emit)
|
||||||
XYPOS @ 2 * 0x7800 OR _ctl
|
DUP 0x0d = IF DROP _lf EXIT THEN
|
||||||
0x20 - 0x5e MIN ( tilenum ) _data 1 _zero
|
0x20 - DUP 0< IF DROP EXIT THEN
|
||||||
|
0x5e MIN ( tilenum ) XYPOS @ _cell!
|
||||||
XYPOS @ 1+ DUP [ VDP_COLS VDP_ROWS * LITN ]
|
XYPOS @ 1+ DUP [ VDP_COLS VDP_ROWS * LITN ]
|
||||||
= IF DROP 0 THEN XYPOS !
|
= IF DROP 0 THEN XYPOS !
|
||||||
;
|
;
|
||||||
|
Loading…
Reference in New Issue
Block a user