- Timestamp:
- 07/10/2017 09:06:56 PM (7 years ago)
- Branches:
- master
- Children:
- 4aa78b2
- Parents:
- 526a993
- Location:
- libcio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/filesys.x
r526a993 r2340de6 8 8 9 9 #include "biosdefs.h" 10 #include "fspars.h" 10 11 #include "stdint.h" 11 12 … … 24 25 extern int16_t _fatmod; 25 26 extern struct bpb *_thebpb; 26 extern struct dirent _thedir[ 224];27 extern uint16_t _thefat[ 7 * 256];27 extern struct dirent _thedir[MAXDIRNT]; 28 extern uint16_t _thefat[MAXFAT * WDPSEC]; 28 29 29 30 /* -
libcio/fsinit.x
r526a993 r2340de6 19 19 */ 20 20 21 extern FILE Cbuffs[ 11];22 extern int32_t Stdbuf[ 8][256];21 extern FILE Cbuffs[NSTREAMS]; 22 extern int32_t Stdbuf[MAXDFILE][BUFSIZL]; 23 23 extern int8_t *Stdbufs; 24 extern int8_t Wrkbuf[ 512];24 extern int8_t Wrkbuf[BPSEC]; 25 25 extern int16_t _b_sect; 26 26 extern int16_t _b_side; … … 28 28 extern int16_t _b_trak; 29 29 extern int16_t _b_tsec; 30 extern struct fcb _fcbtab[ 8];31 extern struct channel chantab[ 11];30 extern struct fcb _fcbtab[MAXDFILE]; 31 extern struct channel chantab[MAXCHAN]; 32 32 33 33 /*
Note:
See TracChangeset
for help on using the changeset viewer.