2001-04-22 00:32:53 +02:00
|
|
|
/* Included by initialisation functions */
|
2000-05-06 21:34:20 +02:00
|
|
|
#define IN_INIT_MOD
|
2001-04-22 00:32:53 +02:00
|
|
|
|
|
|
|
#include "version.h"
|
|
|
|
#include "date.h"
|
|
|
|
#include "time.h"
|
|
|
|
#include "mcb.h"
|
|
|
|
#include "sft.h"
|
|
|
|
#include "fat.h"
|
|
|
|
#include "fnode.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "dcb.h"
|
|
|
|
#include "cds.h"
|
|
|
|
#include "device.h"
|
|
|
|
#include "kbd.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "fcb.h"
|
|
|
|
#include "tail.h"
|
|
|
|
#include "process.h"
|
|
|
|
#include "pcb.h"
|
|
|
|
#include "nls.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
|
2001-11-04 20:47:39 +01:00
|
|
|
#include "KConfig.h"
|
2001-11-18 15:01:12 +01:00
|
|
|
extern struct _KernelConfig InitKernelConfig;
|
2001-11-04 20:47:39 +01:00
|
|
|
|
2000-05-06 21:34:20 +02:00
|
|
|
/*
|
|
|
|
* The null macro `INIT' can be used to allow the reader to differentiate
|
|
|
|
* between functions defined in `INIT_TEXT' and those defined in `_TEXT'.
|
|
|
|
*/
|
|
|
|
#define INIT
|
|
|
|
/*
|
|
|
|
* Functions in `INIT_TEXT' may need to call functions in `_TEXT'. The entry
|
|
|
|
* calls for the latter functions therefore need to be wrapped up with far
|
|
|
|
* entry points.
|
|
|
|
*/
|
2001-04-22 00:32:53 +02:00
|
|
|
#define printf init_printf
|
2001-11-14 00:36:45 +01:00
|
|
|
#define sprintf init_sprintf
|
2001-03-21 03:56:26 +01:00
|
|
|
#define execrh reloc_call_execrh
|
|
|
|
#define fmemcpy reloc_call_fmemcpy
|
|
|
|
#define fmemset reloc_call_fmemset
|
2001-04-22 00:32:53 +02:00
|
|
|
#define memset reloc_call_memset
|
|
|
|
#define fstrncpy reloc_call_fstrncpy
|
2001-03-21 03:56:26 +01:00
|
|
|
#define strcpy reloc_call_strcpy
|
|
|
|
#define strlen reloc_call_strlen
|
2001-09-23 22:39:44 +02:00
|
|
|
WORD ASMCFUNC execrh(request FAR *, struct dhdr FAR *);
|
|
|
|
VOID ASMCFUNC fmemcpy(REG VOID FAR * d, REG VOID FAR * s, REG COUNT n);
|
|
|
|
void ASMCFUNC fmemset(REG VOID FAR * s, REG int ch, REG COUNT n);
|
|
|
|
void ASMCFUNC memset(REG VOID * s, REG int ch, REG COUNT n);
|
|
|
|
VOID ASMCFUNC strcpy(REG BYTE * d, REG BYTE * s);
|
|
|
|
VOID ASMCFUNC fstrncpy(REG BYTE FAR * d, REG BYTE FAR * s, REG COUNT n);
|
|
|
|
COUNT ASMCFUNC fstrlen(REG BYTE FAR * s);
|
|
|
|
COUNT ASMCFUNC strlen(REG BYTE * s);
|
2001-04-22 00:32:53 +02:00
|
|
|
|
|
|
|
#undef LINESIZE
|
|
|
|
#define LINESIZE KBD_MAXLENGTH
|
|
|
|
|
|
|
|
/*inithma.c*/
|
|
|
|
extern BYTE DosLoadedInHMA;
|
2001-11-18 15:01:12 +01:00
|
|
|
extern fmemcmp(BYTE far * s1, BYTE FAR * s2, unsigned len);
|
2001-04-22 00:32:53 +02:00
|
|
|
|
2001-09-23 22:39:44 +02:00
|
|
|
#define setvec(n, isr) (void)(*(VOID (FAR * FAR *)())(MK_FP(0,4 * (n))) = (isr))
|
2001-04-22 00:32:53 +02:00
|
|
|
|
|
|
|
#define fbcopy(s, d, n) fmemcpy(d,s,n)
|
|
|
|
#define GLOBAL extern
|
|
|
|
#define NAMEMAX MAX_CDSPATH /* Maximum path for CDS */
|
|
|
|
#define PARSE_MAX MAX_CDSPATH /* maximum # of bytes in path */
|
|
|
|
#define NFILES 16 /* number of files in table */
|
|
|
|
#define NFCBS 16 /* number of fcbs */
|
|
|
|
#define NSTACKS 8 /* number of stacks */
|
2001-04-29 19:34:41 +02:00
|
|
|
#define NLAST 5 /* last drive */
|
2001-04-22 00:32:53 +02:00
|
|
|
#define NUMBUFF 6 /* Number of track buffers */
|
|
|
|
/* -- must be at least 3 */
|
2001-07-22 03:58:58 +02:00
|
|
|
#define MAX_HARD_DRIVE 8
|
2001-07-28 20:13:06 +02:00
|
|
|
#define NDEV 26 /* up to Z: */
|
2001-07-22 03:58:58 +02:00
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
/* Start of configuration variables */
|
2001-11-18 15:01:12 +01:00
|
|
|
struct config {
|
|
|
|
BYTE cfgBuffers;
|
|
|
|
/* number of buffers in the system */
|
|
|
|
UBYTE cfgFiles;
|
|
|
|
/* number of available files */
|
|
|
|
UBYTE cfgFcbs;
|
|
|
|
/* number of available FCBs */
|
|
|
|
UBYTE cfgProtFcbs;
|
|
|
|
/* number of protected FCBs */
|
|
|
|
BYTE cfgInit[NAMEMAX];
|
|
|
|
/* init of command.com */
|
|
|
|
BYTE cfgInitTail[NAMEMAX];
|
|
|
|
/* command.com's tail */
|
|
|
|
UBYTE cfgLastdrive;
|
|
|
|
/* last drive */
|
|
|
|
BYTE cfgStacks;
|
|
|
|
/* number of stacks */
|
|
|
|
UWORD cfgStackSize;
|
|
|
|
/* stacks size for each stack */
|
|
|
|
/* COUNTRY=
|
|
|
|
In Pass #1 these information is collected and in PostConfig()
|
|
|
|
the NLS package is loaded into memory.
|
|
|
|
-- 2000/06/11 ska */
|
|
|
|
WORD cfgCSYS_cntry;
|
|
|
|
/* country ID to be loaded */
|
|
|
|
WORD cfgCSYS_cp;
|
|
|
|
/* requested codepage; NLS_DEFAULT if default */
|
|
|
|
BYTE cfgCSYS_fnam[NAMEMAX];
|
|
|
|
/* filename of COUNTRY= */
|
|
|
|
WORD cfgCSYS_memory;
|
|
|
|
/* number of bytes required for the NLS pkg;
|
|
|
|
0 if none */
|
|
|
|
VOID FAR *cfgCSYS_data;
|
|
|
|
/* where the loaded data is for PostConfig() */
|
|
|
|
UBYTE cfgP_0_startmode;
|
|
|
|
/* load command.com high or not */
|
2001-04-22 00:32:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct config Config;
|
|
|
|
|
|
|
|
/* config.c */
|
|
|
|
INIT VOID PreConfig(VOID);
|
|
|
|
INIT VOID DoConfig(VOID);
|
|
|
|
INIT VOID PostConfig(VOID);
|
|
|
|
INIT BYTE FAR *KernelAlloc(WORD nBytes);
|
|
|
|
INIT BYTE *skipwh(BYTE * s);
|
|
|
|
INIT BYTE *scan(BYTE * s, BYTE * d);
|
|
|
|
INIT BOOL isnum(BYTE * pszString);
|
|
|
|
INIT BYTE *GetNumber(REG BYTE * pszString, REG COUNT * pnNum);
|
|
|
|
INIT COUNT tolower(COUNT c);
|
|
|
|
INIT COUNT toupper(COUNT c);
|
2001-07-22 03:58:58 +02:00
|
|
|
INIT VOID mcb_init(UCOUNT seg, UWORD size);
|
2001-04-22 00:32:53 +02:00
|
|
|
INIT VOID strcat(REG BYTE * d, REG BYTE * s);
|
|
|
|
INIT BYTE FAR *KernelAlloc(WORD nBytes);
|
2001-09-23 22:39:44 +02:00
|
|
|
INIT COUNT ASMCFUNC Umb_Test(void);
|
2001-11-18 15:01:12 +01:00
|
|
|
INIT COUNT ASMCFUNC UMB_get_largest(UCOUNT * seg, UCOUNT * size);
|
2001-04-22 00:32:53 +02:00
|
|
|
INIT BYTE *GetStringArg(BYTE * pLine, BYTE * pszString);
|
|
|
|
|
2001-07-10 00:19:33 +02:00
|
|
|
/* diskinit.c */
|
|
|
|
COUNT dsk_init(VOID);
|
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
/* int2f.asm */
|
2001-09-23 22:39:44 +02:00
|
|
|
COUNT ASMCFUNC Umb_Test(void);
|
2001-04-22 00:32:53 +02:00
|
|
|
|
|
|
|
/* inithma.c */
|
|
|
|
int MoveKernelToHMA(void);
|
|
|
|
VOID FAR *HMAalloc(COUNT bytesToAllocate);
|
|
|
|
|
|
|
|
/* initoem.c */
|
|
|
|
UWORD init_oem(void);
|
|
|
|
|
|
|
|
/* intr.asm */
|
2001-04-29 19:34:41 +02:00
|
|
|
|
2001-11-18 15:01:12 +01:00
|
|
|
void ASMCFUNC init_call_intr(int nr, iregs * rp);
|
|
|
|
UCOUNT ASMCFUNC read(int fd, void *buf, UCOUNT count);
|
2001-09-23 22:39:44 +02:00
|
|
|
int ASMCFUNC open(const char *pathname, int flags);
|
|
|
|
int ASMCFUNC close(int fd);
|
2001-11-04 20:47:39 +01:00
|
|
|
int ASMCFUNC dup2(int oldfd, int newfd);
|
2001-11-18 15:01:12 +01:00
|
|
|
int ASMCFUNC allocmem(UWORD size, seg * segp);
|
2001-09-23 22:39:44 +02:00
|
|
|
INIT VOID ASMCFUNC init_PSPInit(seg psp_seg);
|
|
|
|
INIT VOID ASMCFUNC init_PSPSet(seg psp_seg);
|
|
|
|
INIT COUNT ASMCFUNC init_DosExec(COUNT mode, exec_blk * ep, BYTE * lp);
|
|
|
|
INIT VOID ASMCFUNC keycheck(VOID);
|
2001-04-22 00:32:53 +02:00
|
|
|
|
|
|
|
/* irqstack.asm */
|
2001-11-18 15:01:12 +01:00
|
|
|
VOID ASMCFUNC init_stacks(VOID FAR * stack_base, COUNT nStacks,
|
|
|
|
WORD stackSize);
|
2001-04-22 00:32:53 +02:00
|
|
|
|
|
|
|
/* inthndlr.c */
|
2001-11-18 15:01:12 +01:00
|
|
|
VOID far ASMCFUNC int21_entry(iregs UserRegs);
|
|
|
|
VOID ASMCFUNC int21_service(iregs far * r);
|
2001-09-23 22:39:44 +02:00
|
|
|
VOID FAR ASMCFUNC int0_handler(void);
|
|
|
|
VOID FAR ASMCFUNC int6_handler(void);
|
|
|
|
VOID FAR ASMCFUNC empty_handler(void);
|
2001-11-18 15:01:12 +01:00
|
|
|
VOID far ASMCFUNC got_cbreak(void); /* procsupt.asm */
|
2001-09-23 22:39:44 +02:00
|
|
|
VOID far ASMCFUNC int20_handler(iregs UserRegs);
|
|
|
|
VOID far ASMCFUNC int21_handler(iregs UserRegs);
|
|
|
|
VOID FAR ASMCFUNC int22_handler(void);
|
|
|
|
VOID FAR ASMCFUNC int24_handler(void);
|
|
|
|
VOID FAR ASMCFUNC low_int25_handler(void);
|
|
|
|
VOID FAR ASMCFUNC low_int26_handler(void);
|
|
|
|
VOID FAR ASMCFUNC int27_handler(void);
|
|
|
|
VOID FAR ASMCFUNC int28_handler(void);
|
|
|
|
VOID FAR ASMCFUNC int29_handler(void);
|
|
|
|
VOID FAR ASMCFUNC int2a_handler(void);
|
|
|
|
VOID FAR ASMCFUNC int2f_handler(void);
|
2001-04-22 00:32:53 +02:00
|
|
|
|
|
|
|
/* main.c */
|
2001-09-23 22:39:44 +02:00
|
|
|
INIT VOID ASMCFUNC FreeDOSmain(void);
|
2001-11-18 15:01:12 +01:00
|
|
|
INIT BOOL init_device(struct dhdr FAR * dhp, BYTE FAR * cmdLine,
|
|
|
|
COUNT mode, COUNT top);
|
2001-04-22 00:32:53 +02:00
|
|
|
INIT VOID init_fatal(BYTE * err_msg);
|
2001-04-15 05:21:50 +02:00
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
/* prf.c */
|
2001-11-18 15:01:12 +01:00
|
|
|
WORD init_printf(CONST BYTE * fmt, ...);
|
2001-11-14 00:36:45 +01:00
|
|
|
WORD init_sprintf(BYTE * buff, CONST BYTE * fmt, ...);
|
2001-07-10 00:19:33 +02:00
|
|
|
|
|
|
|
void MoveKernel(unsigned NewKernelSegment);
|
2001-11-18 15:01:12 +01:00
|
|
|
extern WORD HMAFree; /* first byte in HMA not yet used */
|
2001-07-10 00:19:33 +02:00
|
|
|
|
|
|
|
extern unsigned CurrentKernelSegment;
|
2001-09-23 22:39:44 +02:00
|
|
|
|
|
|
|
#if defined(WATCOM) && 0
|
2001-11-18 15:01:12 +01:00
|
|
|
ULONG FAR ASMCFUNC MULULUS(ULONG mul1, UWORD mul2); /* MULtiply ULong by UShort */
|
|
|
|
ULONG FAR ASMCFUNC MULULUL(ULONG mul1, ULONG mul2); /* MULtiply ULong by ULong */
|
|
|
|
ULONG FAR ASMCFUNC DIVULUS(ULONG mul1, UWORD mul2); /* DIVide ULong by UShort */
|
|
|
|
ULONG FAR ASMCFUNC DIVMODULUS(ULONG mul1, UWORD mul2, UWORD * rem); /* DIVide ULong by UShort */
|
2001-09-23 22:39:44 +02:00
|
|
|
#endif
|