From: sparky4 Date: Tue, 28 Jul 2015 16:31:32 +0000 (-0500) Subject: hmm wcc and wcl do strange things X-Git-Url: http://4ch.mooo.com/gitweb/?a=commitdiff_plain;h=038ec94a6fc7041ae455704f2334264eef7f7353;p=16.git hmm wcc and wcl do strange things modified: 16/segm/WPEE modified: 16/segm/w.bat --- diff --git a/16/segm/WPEE b/16/segm/WPEE index 6cfa68dc..eb63f06c 100644 --- a/16/segm/WPEE +++ b/16/segm/WPEE @@ -1,30 +1,30 @@ ==This is the results of open watcom's base pointers== These are the various memory models of the 8088 that are demonstrated here! ==tiny is not found so default== -local variable bee= 054F:0FFE -local variable bee= 054F:0FFE -far pointer value of pee= 0510:0134 -pointer value of pee= 0510:0134 +local variable bee= 0000:0bc6 +local variable bee= 0bc6 +far pointer value of pee= 0000:0000 +pointer value of pee= 0000 ==small== -local variable bee= 054F:0FFE -local variable bee= 054F:0FFE -far pointer value of pee= 0510:0134 -pointer value of pee= 0510:0134 +local variable bee= 0000:0bc6 +local variable bee= 0bc6 +far pointer value of pee= 0000:0000 +pointer value of pee= 0000 ==medium== -local variable bee= 054F:0FFE -local variable bee= 054F:0FFE -far pointer value of pee= 0510:0134 -pointer value of pee= 0510:0134 +local variable bee= 0000:0bce +local variable bee= 0bce +far pointer value of pee= 0000:0000 +pointer value of pee= 0000 ==compact is what project 16 uses== -local variable bee= 054F:0FFE -local variable bee= 054F:0FFE -far pointer value of pee= 0510:0134 -pointer value of pee= 0510:0134 +local variable bee= 05d5:0c32 +local variable bee= 05d5:0c32 +far pointer value of pee= 05d5:0000 +pointer value of pee= 05d5:0000 ==large== -local variable bee= 054F:0FFE -local variable bee= 054F:0FFE -far pointer value of pee= 0510:0134 -pointer value of pee= 0510:0134 +local variable bee= 05e1:0c3a +local variable bee= 05e1:0c3a +far pointer value of pee= 05e1:0000 +pointer value of pee= 05e1:0000 ==HUGE GUTS!== local variable bee= 06af:0c0a local variable bee= 06af:0c0a diff --git a/16/segm/w.bat b/16/segm/w.bat index 5225da10..977000af 100644 --- a/16/segm/w.bat +++ b/16/segm/w.bat @@ -3,20 +3,20 @@ echo ==This is the results of open watcom's base pointers== > wpee echo These are the various memory models of the 8088 that are demonstrated here! >> wpee @del pee.obj echo ==tiny is not found so default== >> wpee -wcc -0 pee.c +wcl -l=dos -0 pee.c pee.exe >> wpee echo ==small== >> wpee -wcc -0 -ms pee.c +wcl -l=dos -0 -ms pee.c pee.exe >> wpee echo ==medium== >> wpee -wcc -0 -mm pee.c +wcl -l=dos -0 -mm pee.c pee.exe >> wpee echo ==compact is what project 16 uses== >> wpee -wcc -0 -mc pee.c +wcl -l=dos -0 -mc pee.c pee.exe >> wpee echo ==large== >> wpee -wcc -0 -ml pee.c +wcl -l=dos -0 -ml pee.c pee.exe >> wpee echo ==HUGE GUTS!== >> wpee -wcl -0 -mh pee.c +wcl -l=dos -0 -mh pee.c pee.exe >> wpee \ No newline at end of file