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.

22 lines
644 B

  1. TITLE KDATAEND - Kernel ending data area
  2. ; This file contains the kernel data items that must be at the end of
  3. ; their respective segments. This file is last in the link order.
  4. include kernel.inc
  5. ; The PADDATA segment performs two functions: it provides ginit with
  6. ; space to create the ending global heap sentinel, and it forces the
  7. ; linker to fully expand DGROUP in the .EXE file. Kernel uses DGROUP
  8. ; before it's actually loaded by LoadSegment, so it needs to be fully
  9. ; expanded when loaded by the DOS EXEC call of kernel.
  10. sBegin PADDATA
  11. DB 32 DUP (0FFh) ; Room for final arena entry
  12. sEnd PADDATA
  13. end