Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
308B

  1. VARIABLE ORG
  2. VARIABLE L1 VARIABLE L2 VARIABLE L3 VARIABLE L4
  3. : SPLITB
  4. 256 /MOD SWAP
  5. ;
  6. ( We divide by 2 because each PC represents a word. )
  7. : PC H@ ORG @ - 1 RSHIFT ;
  8. ( A, spits an assembled byte, A,, spits an assembled word
  9. Both increase PC. To debug, change C, to .X )
  10. : A, C, ; : A,, SPLITB A, A, ;