home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / DIVERSEN / DOS32V3B / LIB / V24.INC < prev   
Text File  |  1995-03-10  |  2KB  |  37 lines

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;                                                                          ;
  3. ; DOS32 - By Adam Seychell                                                 ;
  4. ;                                                                          ;
  5. ;  Include file to replace DOS32.INC of  DOS32 V2.4                        ;
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7.  
  8. Global  start32                 :near
  9. Global  GetIRQVector            :near
  10. Global  SetIRQVector            :near
  11. Global  GetIntVector            :near
  12. Global  SetIntVector            :near
  13. Global  AllocDMAregion          :near
  14. Global  Allocate_Memory         :near
  15. Global  Debug                   :near
  16. Global  Debug_run               :near
  17. Global  CODE32_sel              :word           ; Selector
  18. Global  DATA32_sel              :word           ; Selector
  19. Global  Zero_sel                :word           ; Selector
  20. Global  PIC1_Base               :byte           ; IRQ 0..7
  21. Global  PIC2_Base               :byte           ; IRQ 0..7
  22. Global  Environment_segment     :word           ; real mode segment
  23. Global  Environment_addr        :dword          ; 32bit offset
  24. Global  PSP_segment             :word           ; real mode segment
  25. Global  PSP_addr                :dword          ; 32bit offset
  26. Global  _0b8000h                :dword          ; 32bit offset
  27. Global  _0a0000h                :dword          ; 32bit offset
  28. Global  CODE32_addr             :dword          ; 32bit offset
  29. Global  Zero_Addr               :dword          ; 32bit offset
  30.  
  31. ;  macro used for calling DOS and BIOS Servises in real mode
  32. ;but from protected mode
  33. ;
  34. DosInt MACRO n
  35.     int n
  36. endm
  37.