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
267B

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