mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 00:30:55 +11:00
9edab10a3a
Also, fix some PSP leaks related to LOAD.
17 lines
318 B
Plaintext
17 lines
318 B
Plaintext
( Line numbers for the user are 1-based, but in code, they're
|
|
0-based. )
|
|
VARIABLE EDPOS
|
|
: _bpos 64 * BLK( + ;
|
|
: T 1- DUP EDPOS ! _bpos (print) CRLF ;
|
|
: P
|
|
EDPOS @ _bpos C<
|
|
64 0 DO ( bpos c )
|
|
DUP 0xd = IF DROP 0 THEN
|
|
2DUP SWAP I + C!
|
|
DUP IF DROP C< THEN
|
|
LOOP
|
|
2DROP
|
|
BLK!!
|
|
;
|
|
|