- Timestamp:
- 07/14/2017 12:36:45 PM (7 years ago)
- Branches:
- master
- Children:
- 298f0b4
- Parents:
- 928d5d9
- Location:
- libcio
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/conin.c
r928d5d9 r33b5477 11 11 int16_t _CBused; 12 12 13 int16_t _conin(i nt8_t *buff, int16_t len)13 int16_t _conin(io_arg arg, int8_t *buff, int16_t len) 14 14 { 15 15 int16_t nbp; -
libcio/conin.x
r928d5d9 r33b5477 7 7 #pragma once 8 8 9 #include "fspars.h" 9 10 #include "stdint.h" 10 11 … … 24 25 */ 25 26 26 extern int16_t _conin(i nt8_t *buff, int16_t len);27 extern int16_t _conin(io_arg arg, int8_t *buff, int16_t len); -
libcio/dirfns.c
r928d5d9 r33b5477 78 78 */ 79 79 80 int8_t *dtunpk(int16_t din, int16_t tin, int 16_t fmt, int8_t *s)80 int8_t *dtunpk(int16_t din, int16_t tin, int8_t *s, int16_t fmt) 81 81 { 82 82 register int16_t ftm, fdt; -
libcio/dirfns.x
r928d5d9 r33b5477 16 16 17 17 extern int8_t *atrstr(int16_t atr, int8_t s[]); 18 extern int8_t *dtunpk(int16_t din, int16_t tin, int 16_t fmt, int8_t *s);18 extern int8_t *dtunpk(int16_t din, int16_t tin, int8_t *s, int16_t fmt); 19 19 extern int8_t *mname(int16_t n); -
libcio/filesys.c
r928d5d9 r33b5477 90 90 */ 91 91 92 uint16_t _getfat(uint16_t *bufad, uint16_t nfat, struct bpb *bpp)92 uint16_t _getfat(uint16_t *bufad, struct bpb *bpp, uint16_t nfat) 93 93 { 94 94 uint16_t fatsec; -
libcio/filesys.x
r928d5d9 r33b5477 44 44 extern int16_t _fmake(struct fcb *fcp); 45 45 extern int16_t _ftrnc(struct dirent *dp); 46 extern uint16_t _getfat(uint16_t *bufad, uint16_t nfat, struct bpb *bpp);46 extern uint16_t _getfat(uint16_t *bufad, struct bpb *bpp, uint16_t nfat); 47 47 extern uint16_t _gtcl12(int8_t *fat, uint16_t cl); 48 48 extern int16_t _inifcb(struct fcb *fcp, int8_t *name, int8_t *ext, int16_t mode); -
libcio/fsinit.c
r928d5d9 r33b5477 109 109 */ 110 110 111 void Init_CB(FILE *fp, int8_t unit, int8_t flags, int32_t *bufad, int16_t bufsize)111 void Init_CB(FILE *fp, int8_t flags, int8_t unit, int32_t *bufad, int16_t bufsize) 112 112 { 113 113 fp->_bp = (int8_t *)0L; -
libcio/fsinit.x
r928d5d9 r33b5477 39 39 extern void InitCH(struct channel *cp, int8_t rdi, int8_t wri, int8_t ioi, int8_t ski, chclo cfp, io_arg charg); 40 40 extern void InitFS(void); 41 extern void Init_CB(FILE *fp, int8_t unit, int8_t flags, int32_t *bufad, int16_t bufsize);41 extern void Init_CB(FILE *fp, int8_t flags, int8_t unit, int32_t *bufad, int16_t bufsize); 42 42 extern int16_t _badfd(void); 43 43 extern int16_t _noper(void);
Note:
See TracChangeset
for help on using the changeset viewer.