- Timestamp:
- 07/10/2017 12:02:05 PM (7 years ago)
- Branches:
- master
- Children:
- 39a696b
- Parents:
- 5fa506d
- Location:
- iolib
- Files:
-
- 7 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
iolib/dofmt.c
r5fa506d r6262b5c 22 22 #define CRUFTY 1 23 23 24 #include "stddefs.h" 25 #include "ctype.h" 26 #include "stdarg.h" 27 28 #include "strings.h" 24 #include "all.h" 29 25 30 26 #define MAXDIGS 11 … … 347 343 } 348 344 } 345 -
iolib/mdump.c
r5fa506d r6262b5c 23 23 #define TESTER 0 24 24 25 #include "stddefs.h" 26 #include "stdio.h" 27 #include "ctype.h" 25 #include "all.h" 28 26 29 27 #define PERLINE 16 … … 128 126 129 127 #endif 128 -
iolib/pause.c
r5fa506d r6262b5c 6 6 */ 7 7 8 #include " biosdefs.h"8 #include "all.h" 9 9 10 10 extern int16_t waitcr(void); … … 17 17 waitcr(); 18 18 } 19 -
iolib/printf.c
r5fa506d r6262b5c 13 13 */ 14 14 15 #include "stddefs.h" 16 #include "biosdefs.h" 17 #include "stdarg.h" 15 #include "all.h" 18 16 19 17 extern int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args); … … 54 52 return(c); 55 53 } 54 -
iolib/rawio.c
r5fa506d r6262b5c 63 63 */ 64 64 65 #include "stddefs.h" 66 #include "errdefs.h" 67 #include "ascii.h" 68 #include "biosdefs.h" 65 #include "all.h" 69 66 70 67 … … 222 219 BIOS(B_PUTC, unit, c); 223 220 } 221 -
iolib/sprintf.c
r5fa506d r6262b5c 6 6 */ 7 7 8 #include " stdarg.h"8 #include "all.h" 9 9 10 10 extern int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args); … … 42 42 return((*buff++ = c) & 0xFF); 43 43 } 44 -
iolib/waitcr.c
r5fa506d r6262b5c 6 6 */ 7 7 8 #include "biosdefs.h" 9 #include "stddefs.h" 8 #include "all.h" 10 9 11 10 extern void xtrap15(void); … … 35 34 return(c); /* return the character that caused us to exit */ 36 35 } 36
Note:
See TracChangeset
for help on using the changeset viewer.