Skip to content

Commit

Permalink
added from my projects
Browse files Browse the repository at this point in the history
  • Loading branch information
neozeed committed Aug 6, 2023
0 parents commit 4e01e19
Show file tree
Hide file tree
Showing 292 changed files with 86,791 additions and 0 deletions.
Binary file added bin/CHKDSK.COM
Binary file not shown.
Binary file added bin/COMMAND.COM
Binary file not shown.
Binary file added bin/DEBUG.COM
Binary file not shown.
Binary file added bin/DISKCOPY.COM
Binary file not shown.
Binary file added bin/EDLIN.COM
Binary file not shown.
Binary file added bin/EXE2BIN.EXE
Binary file not shown.
Binary file added bin/FC.EXE
Binary file not shown.
Binary file added bin/FIND.EXE
Binary file not shown.
Binary file added bin/FORMAT.COM
Binary file not shown.
Binary file added bin/IBMBIO.COM
Binary file not shown.
Binary file added bin/IBMDOS.COM
Binary file not shown.
Binary file added bin/MORE.COM
Binary file not shown.
Binary file added bin/PRINT.COM
Binary file not shown.
Binary file added bin/RECOVER.COM
Binary file not shown.
Binary file added bin/SORT.EXE
Binary file not shown.
Binary file added bin/SYS.COM
Binary file not shown.
1 change: 1 addition & 0 deletions bios/70.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
70
1 change: 1 addition & 0 deletions bios/DOSMAC.ASM
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
INCLUDE ..\INC\DOSMAC.ASM
Binary file added bios/IBMBIO.COM
Binary file not shown.
19 changes: 19 additions & 0 deletions bios/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

OBJ = ibmbio.obj sysimes.obj sysinit.obj

MASM = msdos ..\tools\masm
LINK = msdos ..\tools\LINK
EXE2BIN = msdos ..\tools\exe2bin.exe

ibmbio.com: $(OBJ)
$(LINK) IBMBIO+SYSINIT+SYSIMES;
$(EXE2BIN) IBMBIO IBMBIO.COM < 70.TXT
del -f $(OBJ) ibmbio.exe

%.obj: %.asm
$(MASM) $*.asm $*.obj NUL NUL
# $(MASM) $*.asm $*.obj $*.lst $*.crf


clean:
del -f $(OBJ) *.crf *.lst ibmbio.com
Loading

0 comments on commit 4e01e19

Please sign in to comment.