- Timestamp:
- 07/10/2017 12:02:05 PM (7 years ago)
- Branches:
- master
- Children:
- 39a696b
- Parents:
- 5fa506d
- Location:
- rom
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
rom/booter.c
r5fa506d r6262b5c 8 8 #define PRINTIT 1 /* define non-zero to get printf output from booter */ 9 9 10 #include "stdio.h" 11 #include "io.h" 12 #include "stddefs.h" 13 #include "portab.h" 14 #include "objdefs.h" 15 #include "biosdefs.h" 10 #include "all.h" 16 11 17 12 extern int16_t flread(int8_t *buff, int32_t len, FILE *fp); … … 22 17 extern int16_t ClusMap(struct fcb *fcp); 23 18 24 extern int16_t waitcr (void);19 extern int16_t waitcr2(void); 25 20 #endif 26 21 … … 91 86 SnapFCB(fcp); 92 87 ClusMap(fcp); 93 waitcr ();88 waitcr2(); 94 89 } 95 90 #endif … … 184 179 return(0); 185 180 } 181 -
rom/romp.c
r5fa506d r6262b5c 24 24 #define ONEMEG 1 /* 1 if 1024K, 0 if 512K RAM space (Buchla 700) */ 25 25 26 #include "ascii.h" 27 #include "biosdefs.h" 28 #include "ctype.h" 29 #include "errdefs.h" 30 #include "hwdefs.h" 31 #include "memory.h" 32 #include "rawio.h" 33 #include "regs.h" 34 #include "setjmp.h" 35 #include "stddefs.h" 36 #include "strings.h" 37 #include "vsdd.h" 38 39 #if ON_B700 40 #include "graphdef.h" 41 #include "vsddsw.h" 42 #include "vsddvars.h" 43 44 #include "glcfns.h" 45 #include "stdio.h" 46 #endif 26 #include "all.h" 47 27 48 28 /* … … 829 809 /* 830 810 ============================================================================= 831 waitcr () -- wait for a CR from CON_DEV811 waitcr2() -- wait for a CR from CON_DEV 832 812 Returns: 0 = continue 833 813 1 = ^G hit - abort … … 835 815 */ 836 816 837 int16_t waitcr (void)817 int16_t waitcr2(void) 838 818 { 839 819 int8_t c; … … 1622 1602 j = 0; 1623 1603 1624 if (waitcr ())1604 if (waitcr2()) 1625 1605 return(TRUE); 1626 1606 } … … 4096 4076 } 4097 4077 } 4078
Note:
See TracChangeset
for help on using the changeset viewer.