DOS 3.30 source code leak
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.

25 lines
557 B

5 years ago
  1. ; SCCSID = @(#)filemode.asm 1.1 85/04/10
  2. ; SCCSID = @(#)filemode.asm 1.1 85/04/10
  3. BREAK <Standard I/O assignments>
  4. stdin EQU 0
  5. stdout EQU 1
  6. stderr EQU 2
  7. stdaux EQU 3
  8. stdprn EQU 4
  9. BREAK <File modes>
  10. access_mask EQU 0FH
  11. open_for_read EQU 00h
  12. open_for_write EQU 01h
  13. open_for_both EQU 02h
  14. sharing_mask EQU 0F0H
  15. sharing_compat EQU 000H
  16. sharing_deny_both EQU 010H
  17. sharing_deny_write EQU 020H
  18. sharing_deny_read EQU 030H
  19. sharing_deny_none EQU 040H
  20. sharing_net_FCB EQU 070h
  21. sharing_no_inherit EQU 080H