]> 4ch.mooo.com Git - 16.git/blob - 16/segm/w.bat
made it more documented the segment experiment
[16.git] / 16 / segm / w.bat
1 @echo off
2 echo ==This is the results of open watcom's base pointers== > wpee
3 echo These are the various memory models of the 8088 that are demonstrated here! >> wpee
4 echo ==tiny is not found so default== >> wpee
5 wcc -0 -mt pee.c
6 pee.exe >> wpee
7 echo ==small== >> wpee
8 wcc -0 -ms pee.c
9 pee.exe >> wpee
10 echo ==medium== >> wpee
11 wcc -0 -mm pee.c
12 pee.exe >> wpee
13 echo ==compact is what project 16 uses== >> wpee
14 wcc -0 -mc pee.c
15 pee.exe >> wpee
16 echo ==large== >> wpee
17 wcc -0 -ml pee.c
18 pee.exe >> wpee
19 echo ==HUGE GUTS!== >> wpee
20 wcl -0 -mh pee.c
21 pee.exe >> wpee