Last change
on this file since 1d61ba3 was 6262b5c, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Added include files for global functions and variables.
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | #pragma once
|
---|
2 |
|
---|
3 | #include "biosdefs.h"
|
---|
4 | #include "io.h"
|
---|
5 | #include "stdint.h"
|
---|
6 |
|
---|
7 | /*
|
---|
8 | =============================================================================
|
---|
9 | fsinit.c -- global variables
|
---|
10 | =============================================================================
|
---|
11 | */
|
---|
12 |
|
---|
13 | extern FILE Cbuffs[11];
|
---|
14 | extern int32_t Stdbuf[8][256];
|
---|
15 | extern int8_t *Stdbufs;
|
---|
16 | extern int8_t Wrkbuf[512];
|
---|
17 | extern int16_t _b_sect;
|
---|
18 | extern int16_t _b_side;
|
---|
19 | extern int16_t _b_tbuf[9][256];
|
---|
20 | extern int16_t _b_trak;
|
---|
21 | extern int16_t _b_tsec;
|
---|
22 | extern struct fcb _fcbtab[8];
|
---|
23 | extern struct channel chantab[11];
|
---|
24 |
|
---|
25 | /*
|
---|
26 | =============================================================================
|
---|
27 | fsinit.c -- global functions
|
---|
28 | =============================================================================
|
---|
29 | */
|
---|
30 |
|
---|
31 | extern void InitCH(struct channel *cp, int8_t rdi, int8_t wri, int8_t ioi, int8_t ski, int16_t (*cfp)(), io_arg charg);
|
---|
32 | extern void InitFS(void);
|
---|
33 | extern void Init_CB(FILE *fp, int8_t unit, int8_t flags, int32_t *bufad, int16_t bufsize);
|
---|
34 | extern int16_t _badfd(void);
|
---|
35 | extern int16_t _noper(void);
|
---|
36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.