- Timestamp:
- 07/10/2017 02:17:49 PM (7 years ago)
- Branches:
- master
- Children:
- 06f6615
- Parents:
- 39a696b
- Location:
- iolib
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
iolib/dofmt.c
r39a696b rb28a12e 22 22 #define CRUFTY 1 23 23 24 #include " all.h"24 #include "ram.h" 25 25 26 26 #define MAXDIGS 11 … … 34 34 #define max(a,b) ((a)>(b)?(a):(b)) 35 35 #define min(a,b) ((a)<(b)?(a):(b)) 36 37 #if CRUFTY38 extern int32_t uldiv(int32_t divid, int32_t divis);39 extern int32_t uldivr;40 #endif41 36 42 37 int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args) -
iolib/mdump.c
r39a696b rb28a12e 23 23 #define TESTER 0 24 24 25 #include " all.h"25 #include "ram.h" 26 26 27 27 #define PERLINE 16 -
iolib/pause.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include "all.h" 9 10 extern int16_t waitcr(void); 11 extern void writeln(int16_t unit, int8_t *buf); 8 #include "ram.h" 12 9 13 10 void pause(int8_t *s) -
iolib/printf.c
r39a696b rb28a12e 13 13 */ 14 14 15 #include " all.h"15 #include "ram.h" 16 16 17 extern int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args); 18 19 static int16_t fpsub(int16_t c); 17 static int16_t fpsub(int16_t c); 20 18 21 19 /* -
iolib/rawio.c
r39a696b rb28a12e 63 63 */ 64 64 65 #include "all.h" 66 65 #include "ram.h" 67 66 68 67 int16_t readln(int16_t unit, int16_t nc, int8_t *ctl, int16_t nb, int8_t *buf) -
iolib/sprintf.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include "all.h" 9 10 extern int32_t dofmt_(int16_t (*putsub)(), int8_t *format, va_list args); 8 #include "ram.h" 11 9 12 10 static int8_t *buff; 13 11 static int16_t spsub(int8_t c); 14 12 15 13 /* -
iolib/waitcr.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include "all.h" 9 10 extern void xtrap15(void); 8 #include "ram.h" 11 9 12 10 /*
Note:
See TracChangeset
for help on using the changeset viewer.