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.

24 lines
467 B

  1. ; LIBENTRY.ASM -- Entry point for library modules (small model)
  2. ; -------------------------------------------------------------
  3. Extrn LibMain:Near
  4. _TEXT SEGMENT BYTE PUBLIC 'CODE'
  5. ASSUME CS:_TEXT
  6. PUBLIC LibEntry
  7. LibEntry proc far
  8. push di
  9. push ds
  10. push cx
  11. push es
  12. push si
  13. call LibMain
  14. ret
  15. LibEntry endp
  16. _TEXT ENDS
  17. end LibEntry