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

  1. : ? @ . ;
  2. : _
  3. DUP 9 > IF 10 - 'a' +
  4. ELSE '0' + THEN
  5. ;
  6. ( For hex display, there are no negatives )
  7. : .x
  8. 256 MOD ( ensure < 0x100 )
  9. 16 /MOD ( l h )
  10. _ EMIT ( l )
  11. _ EMIT
  12. ;
  13. : .X
  14. 256 /MOD ( l h )
  15. .x .x
  16. ;