X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=16%2Fsegm%2Fb.bat;h=6929f414f9d0857a7c0706e770f71a7e6a0de1e7;hb=7ba43d126c924ac4438baf77282146a23c12b2ca;hp=e99229cc7425df3d5237dc0bbec8a99cc9e23bee;hpb=4d803a69429c22aeeb410c987c3199b1b4de4462;p=16.git diff --git a/16/segm/b.bat b/16/segm/b.bat index e99229cc..6929f414 100644 --- a/16/segm/b.bat +++ b/16/segm/b.bat @@ -1,18 +1,22 @@ -@echo off -bcc -mt pee.c -pee.exe > bpee -echo "====" >> bpee -bcc -ms pee.c -pee.exe >> bpee -echo "====" >> bpee -bcc -mm pee.c -pee.exe >> bpee -echo "====" >> bpee -bcc -mc pee.c -pee.exe >> bpee -echo "====" >> bpee -bcc -ml pee.c -pee.exe >> bpee -echo "====" >> bpee -bcc -mh pee.c +@echo off +echo ==This is the results of borland c's segment pointers== > bpee +echo These are the various memory models of the 8088 that are demonstrated here! >> bpee +@del pee.obj +echo ==tiny== >> bpee +bcc -mt pee.c +pee.exe >> bpee +echo ==small== >> bpee +bcc -ms pee.c +pee.exe >> bpee +echo ==medium== >> bpee +bcc -mm pee.c +pee.exe >> bpee +echo ==compact is what project 16 uses== >> bpee +bcc -mc pee.c +pee.exe >> bpee +echo ==large== >> bpee +bcc -ml pee.c +pee.exe >> bpee +echo ==HUGE GUTS!== >> bpee +bcc -mh pee.c pee.exe >> bpee \ No newline at end of file