Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tsupplis committed Dec 8, 2022
1 parent 803233c commit ad1f64a
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 39 deletions.
28 changes: 13 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
vm_*
.D*
msorg/**
pcorg/**
*.log
**/.D*
private/**
**/*.log
.*.swp
*.obj
*.prn
*.hex
*.PRN
*.HEX
**/*.obj
**/*.prn
**/*.hex
**/*.PRN
**/*.HEX
**/*.map
**/*.crf
**/*.lst
vm_*
rom
*.img
*.com
*.map
*.exe
*.crf
*.lst
*.com
mscmd.asm
mscmdex.asm
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ ibmdos.obj: ibmdos.asm msdos.asm
emu2 bin/masm.exe ibmdos,ibmdos,ibmdos,ibmdos || rm -f ibmdos.obj

pcdos.img: ibmcmdex.com ibmbio.com ibmdos.com asm.com hello.com trans.com hex2bin.com \
pcorg/pcdos.img hello.asm hello.bas mkhello.bat
cp pcorg/pcdos.img pcdos.img
mattrib -r -s -i pcdos.img ::IBMDOS.COM
mattrib -r -s -i pcdos.img ::IBMBIO.COM
images/blank.img hello.asm hello.bas ball.bas mkhello.bat
cp images/blank.img pcdos.img
-mattrib -r -s -i pcdos.img ::IBMDOS.COM
-mattrib -r -s -i pcdos.img ::IBMBIO.COM
mcopy -o -i pcdos.img ibmbio.com ::IBMBIO.COM
mcopy -o -i pcdos.img ibmdos.com ::IBMDOS.COM
mcopy -o -i pcdos.img ibmcmdex.com ::COMMAND.COM
Expand All @@ -49,6 +49,7 @@ pcdos.img: ibmcmdex.com ibmbio.com ibmdos.com asm.com hello.com trans.com hex2bi
mcopy -o -i pcdos.img hello.asm ::HELLO.ASM
mcopy -o -i pcdos.img mkhello.bat ::MKHELLO.BAT
mcopy -o -i pcdos.img hello.bas ::HELLO.BAS
[ -f private/pceexit.com ] && mcopy -o -i pcdos.img private/pceexit.com ::EXIT.COM
mdir -w -i pcdos.img ::

ibmcmd.com: ibmcmd.exe
Expand Down
Binary file removed ball.bas
Binary file not shown.
15 changes: 12 additions & 3 deletions msdos.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ system {

memtest = 0

floppy_disk_drives = 2
floppy_disk_drives = 3

patch_bios_init = 1
patch_bios_int19 = 1
Expand Down Expand Up @@ -41,7 +41,7 @@ load {

ram {
address = 0
size = 512K
size = 128K
}

rom {
Expand Down Expand Up @@ -155,6 +155,8 @@ fdc {
irq = 6

drive0 = 0x00
drive1 = 0x01
drive2 = 0x02

accurate = 0
}
Expand All @@ -169,6 +171,13 @@ disk {
disk {
drive = 0x01
type = "auto"
file = "app.img"
file = "private/app.img"
optional = 0
}

disk {
drive = 0x02
type = "auto"
file = "misc.img"
optional = 0
}
2 changes: 1 addition & 1 deletion pcdos.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ disk {
disk {
drive = 0x01
type = "auto"
file = "app.img"
file = "private/app.img"
optional = 0
}

Expand Down
Binary file added pcdos.img
Binary file not shown.
16 changes: 0 additions & 16 deletions test

This file was deleted.

0 comments on commit ad1f64a

Please sign in to comment.