home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / Ti / Magazine / Tests / DOORSOSD.ZIP / HEXLIB.H < prev    next >
Encoding:
Text File  |  1998-04-09  |  1.1 KB  |  38 lines

  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. ;----------------------------------------------------------------------------
  14. ; put_bin()
  15. ;
  16. ; Function: prints a binary long word
  17. ;
  18. ; input:  D0.L = long word
  19. ;         D1.L = row
  20. ;         D2.L = column
  21. ;         D4.L = no. of digits - 1
  22. ; output: nothing
  23. ;----------------------------------------------------------------------------
  24. hexlib::put_bin        equ    hexlib@0001
  25.  
  26. ;----------------------------------------------------------------------------
  27. ; put_hex()
  28. ;
  29. ; Function: prints a hexadecimal long word
  30. ;
  31. ; input:  D0.L = long word
  32. ;         D1.L = row
  33. ;         D2.L = column
  34. ;         D4.L = no. of digits - 1
  35. ; output: nothing
  36. ;----------------------------------------------------------------------------
  37. hexlib::put_hex        equ    hexlib@0002
  38.