2020-05-14 18:41:09 -04:00
|
|
|
0xff00 CONSTANT RS_ADDR
|
2020-05-11 21:08:24 -04:00
|
|
|
0xfffa CONSTANT PS_ADDR
|
2021-01-02 14:20:50 -05:00
|
|
|
RS_ADDR 0xa0 - CONSTANT SYSVARS
|
2020-06-28 19:45:28 -04:00
|
|
|
0 CONSTANT HERESTART
|
2020-09-21 17:51:08 -04:00
|
|
|
5 LOAD ( z80 assembler )
|
2020-04-22 21:49:44 -04:00
|
|
|
262 LOAD ( xcomp )
|
2020-06-26 21:41:17 -04:00
|
|
|
282 LOAD ( boot.z80.decl )
|
2020-05-13 13:33:24 -04:00
|
|
|
270 LOAD ( xcomp overrides )
|
2020-06-26 21:41:17 -04:00
|
|
|
283 335 LOADR ( boot.z80 )
|
2020-05-15 22:44:49 -04:00
|
|
|
353 LOAD ( xcomp core low )
|
2020-05-08 21:47:03 -04:00
|
|
|
: (emit) 0 PC! ;
|
Make KEY non-blocking
... and rename it to KEY?. Then, add KEY from KEY? for its blocking
version.
I need this for an upcoming Remote Shell feature. If a Collapse OS
system remotely controls another shell, it needs to be able to poll
both the remote system and the local keyboard at the same time. A
blocking KEY is incompatible with this.
In some places, the polling mechanism doesn't make sense, so this
new KEY? always returns a character. In some places, I just haven't
implemented the mechanism yet, so I kept the old blocking code and
added a "always 1" flag as a temporary shim.
I have probably broken something, but in emulators, Collapse OS runs
fine. It's an important reminder of what will be lost with the new
"dogfooding" approach (see recent mailing list message): without
emulators, it's much harder to to sweeping changes like this without
breaking stuff.
It's fine, I don't expect many more of these core changes to the
system. It's nearly feature-complete.
2021-01-01 08:05:29 -05:00
|
|
|
: (key?) 0 PC@ 1 ;
|
2020-05-14 10:49:24 -04:00
|
|
|
: EFS@
|
2020-06-22 06:29:00 -04:00
|
|
|
1 3 PC! ( read )
|
|
|
|
256 /MOD 3 PC! 3 PC! ( blkid )
|
|
|
|
BLK( 256 /MOD 3 PC! 3 PC! ( dest )
|
2020-05-14 10:49:24 -04:00
|
|
|
;
|
|
|
|
: EFS!
|
2020-06-22 06:29:00 -04:00
|
|
|
2 3 PC! ( write )
|
|
|
|
256 /MOD 3 PC! 3 PC! ( blkid )
|
|
|
|
BLK( 256 /MOD 3 PC! 3 PC! ( dest )
|
2020-05-14 10:49:24 -04:00
|
|
|
;
|
2020-05-23 20:15:28 -04:00
|
|
|
: COLS 80 ; : LINES 32 ;
|
|
|
|
: AT-XY 6 PC! ( y ) 5 PC! ( x ) ;
|
2020-05-14 10:49:24 -04:00
|
|
|
|
2020-10-28 18:06:58 -04:00
|
|
|
390 LOAD ( xcomp core high )
|
2020-04-23 15:14:14 -04:00
|
|
|
(entry) _
|
2020-04-25 22:02:44 -04:00
|
|
|
( Update LATEST )
|
2020-04-28 09:15:17 -04:00
|
|
|
PC ORG @ 8 + !
|
2020-05-14 10:49:24 -04:00
|
|
|
," BLK$ "
|
2021-01-02 15:51:12 -05:00
|
|
|
," ' EFS@ ' BLK@* **! "
|
|
|
|
," ' EFS! ' BLK!* **! "
|
2020-05-15 11:34:35 -04:00
|
|
|
EOT,
|
2020-05-05 20:10:04 -04:00
|
|
|
ORG @ 256 /MOD 2 PC! 2 PC!
|
2020-04-23 15:14:14 -04:00
|
|
|
H@ 256 /MOD 2 PC! 2 PC!
|