-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
72 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,6 @@ typedef union { | |
SIS_BITS bits; | ||
} SIS; | ||
|
||
#endif | ||
int isawait_set(int iorec8, int iorec16); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
*/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <dos.h> | ||
|
||
#include "TYPES.H" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,17 @@ | ||
CC = wcc | ||
AS = wasm | ||
LD = wlink | ||
CL = wcl | ||
|
||
.AUTODEPEND | ||
CFLAGS = -3 -bt=dos | ||
LDFLAGS = SYSTEM DOS | ||
|
||
# *Translator Definitions* | ||
MODEL = s | ||
OBJ = main.obj pci.obj isawait.obj | ||
|
||
CC = TCC | ||
LINK = tlink | ||
LIBPATH = C:\TC\LIB | ||
LFLAGS= /v/L$(LIBPATH) | ||
INCLUDEPATH = ..\..\INCLUDE;..\INCLUDE | ||
all : ISAWAIT.EXE | ||
|
||
ISAWAIT.EXE : $(OBJ) | ||
$(LD) $(LDFLAGS) NAME ISAWAIT.EXE FILE {$(OBJ)} | ||
|
||
OUTPUT = ISAWAIT.EXE | ||
|
||
CFILES = MAIN.C \ | ||
PCI.C \ | ||
ISAWAIT.C | ||
|
||
LIBS = c0$(MODEL) $(LIBPATH)\c$(MODEL).LIB | ||
|
||
$(OUTPUT): | ||
$(CC) -e$(OUTPUT) $(CFILES) | ||
.c.obj : .AUTODEPEND | ||
$(CC) $(CFLAGS) -fo=$@ $< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ int pci_enum_dev(u8 bus, u8 slot); | |
|
||
int pci_test(); | ||
|
||
#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,4 @@ typedef signed long i32; | |
|
||
/* Application specific types */ | ||
|
||
|
||
|
||
#endif | ||
#endif |