File size: 243 Bytes
a2a15a2
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

SOURCE=../Posix/
# Put your DOSEMU folder here 
DOSDIR=/Users/stefan/Documents/DOS/B20
files="basic.c basic.h language.h runtime.c runtime.h hardware.h"

for file in $files
do
	./dosify $SOURCE/$file > $file
	cp $file $DOSDIR 
done