2023-10-28 23:08:05 -04:00
|
|
|
|10 @Console &vector $2 &read $1 &pad $4 &type $1 &write $1 &error $1
|
|
|
|
|a0 @File &vector $2 &success $2 &stat $2 &delete $1 &append $1 &name $2 &length $2 &read $2 &write $2
|
|
|
|
|
|
|
|
|0000
|
|
|
|
|
|
|
|
@src $40
|
|
|
|
|
|
|
|
|0100
|
|
|
|
|
|
|
|
@on-reset ( -> )
|
|
|
|
;on-console .Console/vector DEO2
|
|
|
|
BRK
|
|
|
|
|
|
|
|
@on-console ( -> )
|
|
|
|
.Console/read DEI DUP #20 LTH OVR #7f GTH ORA ?{
|
|
|
|
;src scap STA
|
|
|
|
BRK }
|
|
|
|
POP
|
|
|
|
( | get size )
|
2023-10-28 23:24:37 -04:00
|
|
|
;src scap #0009 SUB2 parse-size
|
2023-10-28 23:08:05 -04:00
|
|
|
( h ) ;img/height STA
|
|
|
|
( w ) ;img/width STA
|
2023-10-28 23:24:37 -04:00
|
|
|
( | get data )
|
2023-10-28 23:08:05 -04:00
|
|
|
;src .File/name DEO2
|
|
|
|
#00 ;img/width LDA #00 ;img/height LDA #30 SFT2 MUL2 .File/length DEO2
|
|
|
|
;img/data .File/read DEO2
|
2023-10-28 23:24:37 -04:00
|
|
|
<convert>
|
2023-10-29 13:04:43 -04:00
|
|
|
#800f DEO
|
2023-10-28 23:08:05 -04:00
|
|
|
BRK
|
|
|
|
|
2023-10-28 23:24:37 -04:00
|
|
|
@parse-size ( 00x00* -- w h )
|
2023-10-28 23:08:05 -04:00
|
|
|
DUP2 sbyte #00 EQU ?&cancel
|
|
|
|
INC2k INC2 LDA LIT "x NEQ ?&cancel
|
|
|
|
INC2k INC2 INC2 sbyte #00 EQU ?&cancel
|
|
|
|
( y ) INC2k INC2 INC2 sbyte STH
|
|
|
|
( x ) sbyte STHr JMP2r
|
|
|
|
&cancel POP2 #0000 JMP2r
|
|
|
|
|
2023-10-28 23:24:37 -04:00
|
|
|
(
|
|
|
|
@| core )
|
|
|
|
|
|
|
|
@<convert> ( -- )
|
|
|
|
#00 ;img/height LDA #30 SFT2 #0000
|
|
|
|
&v ( -- )
|
2023-10-29 13:04:43 -04:00
|
|
|
STH2k #00 ;img/width LDA #30 SFT2 #0000
|
|
|
|
&w ( -- )
|
|
|
|
DUP2 STH2kr get-sixel #18 DEO
|
|
|
|
INC2 GTH2k ?&w
|
|
|
|
POP2 POP2 POP2r [ LIT "- ] #18 DEO
|
|
|
|
#0006 ADD2 GTH2k ?&v
|
|
|
|
POP2 POP2 JMP2r
|
2023-10-28 23:24:37 -04:00
|
|
|
|
2023-10-28 23:39:23 -04:00
|
|
|
@get-sixel ( x* y* -- byte )
|
|
|
|
SWP2 ,&x STR2
|
2023-10-29 13:04:43 -04:00
|
|
|
[ LITr 00 ] DUP2 #0006 ADD2
|
2023-10-28 23:39:23 -04:00
|
|
|
&l ( -- )
|
2023-10-29 13:04:43 -04:00
|
|
|
[ LITr 10 ] SFTr [ LIT2 &x $2 ] OVR2 get-pixel STH ORAr #0001 SUB2 LTH2k ?&l
|
|
|
|
POP2 POP2 STHr [ LIT "? ] ADD JMP2r
|
2023-10-28 23:39:23 -04:00
|
|
|
|
2023-10-28 23:24:37 -04:00
|
|
|
@get-row ( x* y* -- row* )
|
|
|
|
STH2k
|
|
|
|
( ) #03 SFT2 SWP2
|
|
|
|
( ) #03 SFT2 SWP2
|
|
|
|
( ) #00 ;img/width LDA MUL2 ADD2 #30 SFT2
|
|
|
|
( ) STH2r #0007 AND2 ADD2
|
|
|
|
( ) ;img/data ADD2 JMP2r
|
|
|
|
|
|
|
|
@get-pixel ( x* y* -- b )
|
|
|
|
( keep x* ) OVR2 NIP #07 AND STH
|
|
|
|
( get byte ) get-row LDA
|
|
|
|
( flag ) #07 STHr SUB SFT #01 AND JMP2r
|
|
|
|
|
2023-10-28 23:08:05 -04:00
|
|
|
(
|
|
|
|
@|stdlib )
|
|
|
|
|
|
|
|
@sbyte ( str* -- byte )
|
|
|
|
( hn ) LDAk chex #40 SFT STH INC2
|
|
|
|
( ln ) LDA chex STHr ORA JMP2r
|
|
|
|
|
|
|
|
@chex ( c -- val? )
|
|
|
|
( dec ) [ LIT "0 ] SUB DUP #09 GTH ?{ JMP2r }
|
|
|
|
( hex ) #27 SUB DUP #0f GTH ?{ JMP2r }
|
|
|
|
( err ) POP #ff JMP2r
|
|
|
|
|
|
|
|
@slen ( str* -- len* )
|
|
|
|
DUP2 scap SWP2 SUB2 JMP2r
|
|
|
|
|
|
|
|
@scap ( str* -- end* )
|
|
|
|
LDAk #00 NEQ [ JMP JMP2r ] &w INC2 LDAk ?&w
|
|
|
|
JMP2r
|
|
|
|
|
|
|
|
(
|
|
|
|
@|memory )
|
|
|
|
|
2023-10-28 23:24:37 -04:00
|
|
|
@img ( )
|
|
|
|
&size &width $1
|
2023-10-28 23:08:05 -04:00
|
|
|
&height $1
|
|
|
|
&data
|
|
|
|
|