mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 08:40:54 +11:00
17 lines
384 B
Plaintext
17 lines
384 B
Plaintext
|
: XPACK ( blkno -- )
|
||
|
BLK@
|
||
|
BLK( 0x2e RAM+ ! ( boot ptr )
|
||
|
['] (boot<) 0x08 RAM+ ! ( C<* override )
|
||
|
BEGIN
|
||
|
WORD
|
||
|
0x2e RAM+ @ BLK( 1024 + < IF
|
||
|
DUP LIT< ( S= IF
|
||
|
DROP [COMPILE] (
|
||
|
ELSE
|
||
|
SCPY 0x20 H@ 1- C!
|
||
|
THEN 0 ( loop again )
|
||
|
ELSE 1 ( stop looping ) THEN
|
||
|
UNTIL
|
||
|
0 0x08 RAM+ !
|
||
|
;
|