mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 01:30:55 +11:00
11 lines
308 B
Plaintext
11 lines
308 B
Plaintext
VARIABLE ORG
|
|
VARIABLE L1 VARIABLE L2 VARIABLE L3 VARIABLE L4
|
|
: SPLITB
|
|
256 /MOD SWAP
|
|
;
|
|
( We divide by 2 because each PC represents a word. )
|
|
: PC H@ ORG @ - 1 RSHIFT ;
|
|
( A, spits an assembled byte, A,, spits an assembled word
|
|
Both increase PC. To debug, change C, to .X )
|
|
: A, C, ; : A,, SPLITB A, A, ;
|