hexlib.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ;----------------------------------------------------------------------------
  2. ; put_char()
  3. ;
  4. ; Function: Prints a hex character
  5. ;
  6. ; input: D0.L = character
  7. ; D1.L = row
  8. ; D2.L = column
  9. ; output: nothing
  10. ;----------------------------------------------------------------------------
  11. hexlib::put_char equ hexlib@0000
  12. ;----------------------------------------------------------------------------
  13. ; put_bin()
  14. ;
  15. ; Function: prints a binary long word
  16. ;
  17. ; input: D0.L = long word
  18. ; D1.L = row
  19. ; D2.L = column
  20. ; D4.L = no. of digits - 1
  21. ; output: nothing
  22. ;----------------------------------------------------------------------------
  23. hexlib::put_bin equ hexlib@0001
  24. ;----------------------------------------------------------------------------
  25. ; put_hex()
  26. ;
  27. ; Function: prints a hexadecimal long word
  28. ;
  29. ; input: D0.L = long word
  30. ; D1.L = row
  31. ; D2.L = column
  32. ; D4.L = no. of digits - 1
  33. ; output: nothing
  34. ;----------------------------------------------------------------------------
  35. hexlib::put_hex equ hexlib@0002