Skip to content

Commit 4e01e19

Browse files
committed
added from my projects
0 parents  commit 4e01e19

File tree

292 files changed

+86791
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

292 files changed

+86791
-0
lines changed

bin/CHKDSK.COM

6.32 KB
Binary file not shown.

bin/COMMAND.COM

17.6 KB
Binary file not shown.

bin/DEBUG.COM

11.9 KB
Binary file not shown.

bin/DISKCOPY.COM

1.38 KB
Binary file not shown.

bin/EDLIN.COM

7.89 KB
Binary file not shown.

bin/EXE2BIN.EXE

1.61 KB
Binary file not shown.

bin/FC.EXE

2.52 KB
Binary file not shown.

bin/FIND.EXE

6.18 KB
Binary file not shown.

bin/FORMAT.COM

6.75 KB
Binary file not shown.

bin/IBMBIO.COM

4.68 KB
Binary file not shown.

bin/IBMDOS.COM

16.9 KB
Binary file not shown.

bin/MORE.COM

4.28 KB
Binary file not shown.

bin/PRINT.COM

4.4 KB
Binary file not shown.

bin/RECOVER.COM

2.25 KB
Binary file not shown.

bin/SORT.EXE

1.59 KB
Binary file not shown.

bin/SYS.COM

922 Bytes
Binary file not shown.

bios/70.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
70

bios/DOSMAC.ASM

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
INCLUDE ..\INC\DOSMAC.ASM

bios/IBMBIO.COM

4.68 KB
Binary file not shown.

bios/Makefile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
OBJ = ibmbio.obj sysimes.obj sysinit.obj
3+
4+
MASM = msdos ..\tools\masm
5+
LINK = msdos ..\tools\LINK
6+
EXE2BIN = msdos ..\tools\exe2bin.exe
7+
8+
ibmbio.com: $(OBJ)
9+
$(LINK) IBMBIO+SYSINIT+SYSIMES;
10+
$(EXE2BIN) IBMBIO IBMBIO.COM < 70.TXT
11+
del -f $(OBJ) ibmbio.exe
12+
13+
%.obj: %.asm
14+
$(MASM) $*.asm $*.obj NUL NUL
15+
# $(MASM) $*.asm $*.obj $*.lst $*.crf
16+
17+
18+
clean:
19+
del -f $(OBJ) *.crf *.lst ibmbio.com

0 commit comments

Comments
 (0)