OSDN Git Service

hmm wcc and wcl do strange things
authorsparky4 <sparky4@cock.li>
Tue, 28 Jul 2015 16:31:32 +0000 (11:31 -0500)
committersparky4 <sparky4@cock.li>
Tue, 28 Jul 2015 16:31:32 +0000 (11:31 -0500)
modified:   16/segm/WPEE
modified:   16/segm/w.bat

16/segm/WPEE
16/segm/w.bat

index 6cfa68d..eb63f06 100644 (file)
@@ -1,30 +1,30 @@
 ==This is the results of open watcom's base pointers==\r
 These are the various memory models of the 8088 that are demonstrated here!\r
 ==tiny is not found so default==\r
-local variable bee=            054F:0FFE\r
-local variable bee=            054F:0FFE\r
-far pointer value of pee=      0510:0134\r
-pointer value of pee=          0510:0134\r
+local variable bee=            0000:0bc6\r
+local variable bee=            0bc6\r
+far pointer value of pee=      0000:0000\r
+pointer value of pee=          0000\r
 ==small==\r
-local variable bee=            054F:0FFE\r
-local variable bee=            054F:0FFE\r
-far pointer value of pee=      0510:0134\r
-pointer value of pee=          0510:0134\r
+local variable bee=            0000:0bc6\r
+local variable bee=            0bc6\r
+far pointer value of pee=      0000:0000\r
+pointer value of pee=          0000\r
 ==medium==\r
-local variable bee=            054F:0FFE\r
-local variable bee=            054F:0FFE\r
-far pointer value of pee=      0510:0134\r
-pointer value of pee=          0510:0134\r
+local variable bee=            0000:0bce\r
+local variable bee=            0bce\r
+far pointer value of pee=      0000:0000\r
+pointer value of pee=          0000\r
 ==compact is what project 16 uses==\r
-local variable bee=            054F:0FFE\r
-local variable bee=            054F:0FFE\r
-far pointer value of pee=      0510:0134\r
-pointer value of pee=          0510:0134\r
+local variable bee=            05d5:0c32\r
+local variable bee=            05d5:0c32\r
+far pointer value of pee=      05d5:0000\r
+pointer value of pee=          05d5:0000\r
 ==large==\r
-local variable bee=            054F:0FFE\r
-local variable bee=            054F:0FFE\r
-far pointer value of pee=      0510:0134\r
-pointer value of pee=          0510:0134\r
+local variable bee=            05e1:0c3a\r
+local variable bee=            05e1:0c3a\r
+far pointer value of pee=      05e1:0000\r
+pointer value of pee=          05e1:0000\r
 ==HUGE GUTS!==\r
 local variable bee=            06af:0c0a\r
 local variable bee=            06af:0c0a\r
index 5225da1..977000a 100644 (file)
@@ -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\r
 @del pee.obj\r
 echo ==tiny is not found so default== >> wpee\r
-wcc -0 pee.c\r
+wcl -l=dos -0 pee.c\r
 pee.exe >> wpee\r
 echo ==small== >> wpee\r
-wcc -0 -ms pee.c\r
+wcl -l=dos -0 -ms pee.c\r
 pee.exe >> wpee\r
 echo ==medium== >> wpee\r
-wcc -0 -mm pee.c\r
+wcl -l=dos -0 -mm pee.c\r
 pee.exe >> wpee\r
 echo ==compact is what project 16 uses== >> wpee\r
-wcc -0 -mc pee.c\r
+wcl -l=dos -0 -mc pee.c\r
 pee.exe >> wpee\r
 echo ==large== >> wpee\r
-wcc -0 -ml pee.c\r
+wcl -l=dos -0 -ml pee.c\r
 pee.exe >> wpee\r
 echo ==HUGE GUTS!== >> wpee\r
-wcl -0 -mh pee.c\r
+wcl -l=dos -0 -mh pee.c\r
 pee.exe >> wpee
\ No newline at end of file