Changeset 6262b5c in buchla-68k for rom


Ignore:
Timestamp:
07/10/2017 12:02:05 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
39a696b
Parents:
5fa506d
Message:

Added include files for global functions and variables.

Location:
rom
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • rom/booter.c

    r5fa506d r6262b5c  
    88#define PRINTIT 1       /* define non-zero to get printf output from booter */
    99
    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"
    1611
    1712extern  int16_t flread(int8_t *buff, int32_t len, FILE *fp);
     
    2217extern  int16_t ClusMap(struct fcb *fcp);
    2318
    24 extern  int16_t waitcr(void);
     19extern  int16_t waitcr2(void);
    2520#endif
    2621
     
    9186                SnapFCB(fcp);
    9287                ClusMap(fcp);
    93                 waitcr();
     88                waitcr2();
    9489        }
    9590#endif
     
    184179        return(0);
    185180}
     181
  • rom/romp.c

    r5fa506d r6262b5c  
    2424#define ONEMEG  1       /* 1 if 1024K, 0 if 512K RAM space (Buchla 700) */
    2525
    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"
    4727
    4828/*
     
    829809/*
    830810   =============================================================================
    831         waitcr() -- wait for a CR from CON_DEV
     811        waitcr2() -- wait for a CR from CON_DEV
    832812                Returns:        0 = continue
    833813                                1 = ^G hit - abort
     
    835815*/
    836816
    837 int16_t waitcr(void)
     817int16_t waitcr2(void)
    838818{
    839819        int8_t  c;
     
    16221602                        j = 0;
    16231603
    1624                         if (waitcr())
     1604                        if (waitcr2())
    16251605                                return(TRUE);
    16261606                }
     
    40964076        }
    40974077}
     4078
Note: See TracChangeset for help on using the changeset viewer.