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