Leaked source code of windows server 2003
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.

39 lines
1013 B

  1. ; BIOSSEG.INC
  2. ;
  3. ; This file defines the segment structure of the BIOS.
  4. ; It should be included at the beginning of each source file.
  5. ; All further segment declarations in the file can then be done by just
  6. ; by specifying the segment name, with no attribute, class, or align type.
  7. datagrp group Bios_Data,Bios_Data_Init
  8. Bios_Data segment word public 'Bios_Data'
  9. Bios_Data ends
  10. Bios_Data_Init segment word public 'Bios_Data_Init'
  11. Bios_Data_Init ends
  12. Filler segment para public 'Filler'
  13. Filler ends
  14. Bios_Code segment word public 'Bios_Code'
  15. Bios_Code ends
  16. Filler2 segment para public 'Filler2'
  17. Filler2 ends
  18. sysinitgrp group sysinitseg, SpcKbdSeg, SpcMseSeg, SpcEmmSeg
  19. SysInitSeg segment word public 'system_init'
  20. SysInitSeg ends
  21. SpcKbdSeg segment para public 'SoftpcKeyboard'
  22. SpcKbdSeg ends
  23. SpcMseSeg segment para public 'SoftpcMouse'
  24. SpcMseSeg ends
  25. SpcEmmSeg segment para public 'SoftpcEmm'
  26. SpcEmmSeg ends