Source code of Windows XP (NT5)
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.

27 lines
522 B

  1. ;++
  2. ;
  3. ; Module Name:
  4. ;
  5. ; backend.asm
  6. ;
  7. ; Module Description:
  8. ;
  9. ; This module is needed only to get around a linker quirk we
  10. ; run into because we're linking an app compiled as a "small"
  11. ; model app as a "tiny" model app.
  12. ;
  13. ; This is how we find the end of the com file and the beginning of the
  14. ; OS loader coff header. This file must always be linked last when
  15. ; generating STARTUP.COM
  16. ;--
  17. .386p
  18. _DATA segment para use16 public 'DATA'
  19. public _BackEnd
  20. _BackEnd equ $
  21. _DATA ends
  22. end