home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / fossil / t2kcom52.arc / BIOSCALL.ASM next >
Assembly Source File  |  1987-03-28  |  2KB  |  79 lines

  1. ;
  2. ; Copyright (C) 1987 Solar Wind Computing,  ALL RIGHTS RESERVED
  3. ;
  4. ;
  5. ;  Equates for IBM BIOS interrupt calls
  6. ;
  7. BiosVideo equ   10h
  8. BiosDisk  equ   13h
  9. BiosComm  equ   14h
  10. BiosKeybd equ   16h
  11. BiosLpt   equ   17h
  12. BiosBoot  equ   19h
  13. BiosClk   equ   1ah
  14. BiosBreak equ   1bh
  15. ;
  16. ;  Equates for Tandy BIOS interrupt calls
  17. ;
  18. TBiosBoot  equ  49h
  19. TBiosKeybd equ  51h
  20. TBiosVideo equ  52h
  21. TBiosComm  equ  53h
  22. TBiosLpt   equ  54h
  23. TBiosClk   equ  55h
  24. TBiosDisk  equ  56h
  25. ;
  26. ;  Equates for BIOS keyboard functions
  27. ;
  28. KeybdRead  equ  00h
  29. KeybdScan  equ  01h
  30. KeybdStat  equ  02h
  31. KeybdFlush equ  03h
  32. KeybdReset equ  04h
  33. ;
  34. ;  Equates for BIOS video functions
  35. ;
  36. VideoSetMode   equ      00h
  37. VideoSetCurTyp equ      01h
  38. VideoSetCurPos equ      02h
  39. VideoGetCurPos equ      03h
  40. VideoSelPage   equ      05h
  41. VideoScrlUp    equ      06h
  42. VideoScrlDn    equ      07h
  43. VideoRdAtrCh   equ      08h
  44. VideoWrAtrCh   equ      09h
  45. VideoWrCh      equ      0ah
  46. VideoSetPal    equ      0bh
  47. VideoWrDot     equ      0ch
  48. VideoRdDot     equ      0dh
  49. VideoWrTty     equ      0eh
  50. VideoGetMode   equ      0fh
  51. VideoFont      equ      10h
  52. VideoWrAtr     equ      11h
  53. VideoAdvScrl   equ      12h
  54. ;
  55. ;  Equates for BIOS communications functions
  56. ;
  57. CommReset equ   00h
  58. CommXmit  equ   01h
  59. CommRecv  equ   02h
  60. CommStat  equ   03h
  61. CommFlush equ   04h
  62. ;
  63. ;  Record definition for parms used to set port with CommReset
  64. ;
  65. CRParm    record    CRRate:3,CRParity:2,CRStopBit:1,CRWordLen:2
  66. ;
  67. ;  Equates for BIOS line printer functions
  68. ;
  69. LptPrCh  equ    00h
  70. LptReset equ    01h
  71. LptStat  equ    02h
  72. ;
  73. ;  Equates for BIOS clock functions
  74. ;
  75. ClkGetTod  equ  00h
  76. ClkSetTod  equ  01h
  77. ClkGetDate equ  02h
  78. ClkSetDate equ  03h
  79.