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.

17 lines
281B

  1. : _ ( a -- a+8 )
  2. DUP ( a a )
  3. ':' EMIT DUP .x SPC
  4. 4 0 DO DUP @ 256 /MOD SWAP .x .x SPC 2+ LOOP
  5. DROP ( a )
  6. 8 0 DO
  7. C@+ DUP 0x20 0x7e =><= NOT IF DROP '.' THEN EMIT
  8. LOOP NL ;
  9. : DUMP ( n a -- )
  10. LF
  11. SWAP 8 /MOD SWAP IF 1+ THEN
  12. 0 DO _ LOOP
  13. ;