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.

26 lines
372 B

  1. ?PLM = 0 ; no pl/m calling conventions
  2. ?WIN = 0
  3. ifndef NOCODENEAR
  4. CODENEAR equ 1
  5. endif
  6. ifdef SMALL
  7. memS equ 1 ; small model
  8. endif
  9. ifdef MEDIUM
  10. memM equ 1 ; medium model
  11. endif
  12. ifdef LARGE
  13. memL equ 1 ; large model
  14. endif
  15. ifndef SMALL
  16. ifndef MEDIUM
  17. ifndef LARGE
  18. %out <must choose a memory model; SMALL/MEDIUM/LARGE>
  19. endif
  20. endif
  21. endif