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
935 B

5 years ago
  1. ; SCCSID = @(#)find.asm 1.1 85/04/10
  2. ; SCCSID = @(#)find.asm 1.1 85/04/10
  3. Break <find first/next buffer>
  4. find_buf STRUC
  5. ;----+----+----+----+----+----+----+----+----+----+----+----+----+----+----;
  6. ; C A V E A T P R O G R A M M E R ;
  7. ; ;
  8. find_buf_drive DB ? ; drive of search
  9. find_buf_name DB 11 DUP (?) ; formatted name
  10. find_buf_sattr DB ? ; attribute of search
  11. find_buf_LastEnt DW ? ; LastEnt
  12. find_buf_DirStart DW ? ; DirStart
  13. find_buf_NetID DB 4 DUP (?) ; Reserved for NET
  14. ; ;
  15. ; C A V E A T P R O G R A M M E R ;
  16. ;----+----+----+----+----+----+----+----+----+----+----+----+----+----+----;
  17. find_buf_attr DB ? ; attribute found
  18. find_buf_time DW ? ; time
  19. find_buf_date DW ? ; date
  20. find_buf_size_l DW ? ; low(size)
  21. find_buf_size_h DW ? ; high(size)
  22. find_buf_pname DB 13 DUP (?) ; packed name
  23. find_buf ENDS