DOOM
This commit is contained in:
parent
2a033b111b
commit
f9c6368f29
4 changed files with 41 additions and 0 deletions
2
DOOM/.gitignore
vendored
Normal file
2
DOOM/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bin
|
||||||
|
DOOMS
|
8
DOOM/README.md
Normal file
8
DOOM/README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#### DOOM
|
||||||
|
|
||||||
|
Extract the DOOM shareware floppy into the `bin` directory, and make sure there
|
||||||
|
is an `INSTALL.BAT` file. Then run `setup`.
|
||||||
|
|
||||||
|
##### requirements
|
||||||
|
|
||||||
|
- dosbox
|
16
DOOM/run
Executable file
16
DOOM/run
Executable file
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
export dir=$(pwd)
|
||||||
|
|
||||||
|
(cat <<"EOF"
|
||||||
|
@echo off
|
||||||
|
mount c $dir
|
||||||
|
C:\
|
||||||
|
cd DOOMS
|
||||||
|
DOOM
|
||||||
|
exit
|
||||||
|
EOF
|
||||||
|
) > run.bat
|
||||||
|
(sleep 2; rm run.bat) &
|
||||||
|
dosbox run.bat &
|
||||||
|
|
15
DOOM/setup
Executable file
15
DOOM/setup
Executable file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
export dir=$(pwd)
|
||||||
|
|
||||||
|
(cat <<"EOF"
|
||||||
|
@echo off
|
||||||
|
mount c $dir
|
||||||
|
C:\
|
||||||
|
cd BIN
|
||||||
|
INSTALL.BAT
|
||||||
|
exit
|
||||||
|
EOF
|
||||||
|
) > setup.bat
|
||||||
|
(sleep 1; rm setup.bat) &
|
||||||
|
dosbox setup.bat &
|
Loading…
Reference in a new issue