2021-04-21 12:37:59 +00:00
|
|
|
( Dev/File )
|
|
|
|
|
2021-04-21 18:38:30 +00:00
|
|
|
%8+ { #0008 ADD2 }
|
2021-04-21 12:37:59 +00:00
|
|
|
%MEMORY { #1000 }
|
|
|
|
|
2021-04-21 12:45:17 +00:00
|
|
|
( devices )
|
|
|
|
|
|
|
|
|00 @System [ &vector $2 &pad $6 &r $2 &g $2 &b $2 ]
|
2021-07-07 20:20:14 +00:00
|
|
|
|10 @Console [ &pad $8 &write $1 ]
|
2021-07-31 20:58:33 +00:00
|
|
|
|20 @Screen [ &vector $2 &width $2 &height $2 &pad $2 &x $2 &y $2 &addr $2 &pixel $1 &sprite $1 ]
|
2021-11-07 19:10:30 +00:00
|
|
|
|a0 @File [ &vector $2 &success $2 &stat $2 &delete $1 &append $1 &name $2 &length $2 &read $2 &write $2 ]
|
2021-04-21 12:45:17 +00:00
|
|
|
|
|
|
|
( variables )
|
|
|
|
|
|
|
|
|0000
|
|
|
|
|
2021-04-21 16:48:04 +00:00
|
|
|
( init )
|
2021-04-21 12:37:59 +00:00
|
|
|
|
2021-04-21 16:48:04 +00:00
|
|
|
|0100 ( -> )
|
2021-04-21 12:37:59 +00:00
|
|
|
|
|
|
|
( theme )
|
2021-04-23 03:44:38 +00:00
|
|
|
#0efc .System/r DEO2
|
|
|
|
#03cc .System/g DEO2
|
|
|
|
#03ac .System/b DEO2
|
2021-04-21 12:37:59 +00:00
|
|
|
|
2021-04-21 18:12:42 +00:00
|
|
|
( load file )
|
2021-04-23 03:44:38 +00:00
|
|
|
#1000 .File/length DEO2
|
|
|
|
;srcpath .File/name DEO2
|
2021-11-07 19:10:30 +00:00
|
|
|
MEMORY .File/read DEO2
|
2021-04-21 12:37:59 +00:00
|
|
|
|
2021-05-13 06:36:24 +00:00
|
|
|
.File/success DEI2 ORA ;on-success JCN2
|
2021-04-21 12:37:59 +00:00
|
|
|
|
2021-07-07 20:20:14 +00:00
|
|
|
;failedtxt ;print-string JSR2
|
2021-04-21 18:38:30 +00:00
|
|
|
|
2021-04-21 12:37:59 +00:00
|
|
|
BRK
|
|
|
|
|
2021-04-21 18:12:42 +00:00
|
|
|
@on-success ( -> )
|
2021-04-21 12:37:59 +00:00
|
|
|
|
2021-07-07 20:20:14 +00:00
|
|
|
;successtxt ;print-string JSR2
|
2021-04-21 18:38:30 +00:00
|
|
|
|
|
|
|
( draw image )
|
2021-04-23 03:44:38 +00:00
|
|
|
MEMORY .Screen/addr DEO2
|
2021-04-21 18:38:30 +00:00
|
|
|
#0000 #0080
|
|
|
|
&ver
|
2021-04-23 03:44:38 +00:00
|
|
|
( save ) OVR2 .Screen/y DEO2
|
2021-04-21 18:38:30 +00:00
|
|
|
#0000 #0080
|
|
|
|
&hor
|
2021-04-23 03:44:38 +00:00
|
|
|
( save ) OVR2 .Screen/x DEO2
|
2021-07-31 20:58:33 +00:00
|
|
|
( draw ) #81 .Screen/sprite DEO
|
2021-04-23 03:44:38 +00:00
|
|
|
( incr ) .Screen/addr DEI2 #0010 ADD2 .Screen/addr DEO2
|
2021-04-21 18:38:30 +00:00
|
|
|
( incr ) SWP2 8+ SWP2
|
2021-05-12 19:08:51 +00:00
|
|
|
LTH2k ,&hor JCN
|
2021-04-21 18:38:30 +00:00
|
|
|
POP2 POP2
|
|
|
|
( incr ) SWP2 8+ SWP2
|
2021-05-12 19:08:51 +00:00
|
|
|
LTH2k ,&ver JCN
|
2021-04-21 18:38:30 +00:00
|
|
|
POP2 POP2
|
2021-04-23 03:44:38 +00:00
|
|
|
|
2021-04-21 18:38:30 +00:00
|
|
|
( save file )
|
2021-04-23 03:44:38 +00:00
|
|
|
#1000 .File/length DEO2
|
|
|
|
;dstpath .File/name DEO2
|
2021-11-07 19:10:30 +00:00
|
|
|
MEMORY .File/write DEO2
|
2021-04-21 12:37:59 +00:00
|
|
|
|
2021-04-21 18:12:42 +00:00
|
|
|
BRK
|
2021-04-21 12:37:59 +00:00
|
|
|
|
2021-07-07 20:20:14 +00:00
|
|
|
@print-string ( ptr* -- )
|
|
|
|
LDAk DUP ,&keep-going JCN
|
|
|
|
POP POP2 JMP2r
|
|
|
|
|
|
|
|
&keep-going
|
|
|
|
.Console/write DEO
|
2021-08-26 22:27:18 +00:00
|
|
|
INC2
|
2021-07-07 20:20:14 +00:00
|
|
|
,print-string JMP
|
|
|
|
|
2021-04-29 04:00:39 +00:00
|
|
|
@successtxt "Success! 09 $1
|
|
|
|
@failedtxt "Failed. 09 $1
|
2021-04-21 18:38:30 +00:00
|
|
|
|
|
|
|
@srcpath "projects/pictures/ako10x10.chr $1
|
|
|
|
@dstpath "bin/image-copy.chr $1
|