Win32 needs ".386" and ".model" declarations.
authorChris Hanson <org/chris-hanson/cph>
Wed, 25 Oct 1995 05:01:42 +0000 (05:01 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 25 Oct 1995 05:01:42 +0000 (05:01 +0000)
v7/src/microcode/cmpauxmd/i386.m4
v7/src/microcode/ntutl/makefile.wcc
v7/src/microcode/os2utl/makefile.wcc

index ebf5fdcfb56940d206db98999be716e048fbacf1..826ea4976888122ebb0af614efb9b4d5adb06dd8 100644 (file)
@@ -1,6 +1,6 @@
 ### -*-Midas-*-
 ###
-###    $Id: i386.m4,v 1.41 1995/10/24 06:28:41 cph Exp $
+###    $Id: i386.m4,v 1.42 1995/10/25 04:57:46 cph Exp $
 ###
 ###    Copyright (c) 1992-95 Massachusetts Institute of Technology
 ###
@@ -381,6 +381,8 @@ define(rmask,REG(ebp))
 
 IFDOS(`.386
 .model tiny')
+IF_WIN32(`.386
+.model flat')
 
 DECLARE_DATA_SEGMENT()
 declare_alignment(2)
index 1703bc54683258ec486dc4ba3e9a519004502443..47b35d2ae12b90a9257d02ea8aeb6a015c8f4616 100644 (file)
@@ -1,6 +1,6 @@
 ### -*- Fundamental -*-
 ###
-###     $Id: makefile.wcc,v 1.2 1995/10/24 09:33:04 cph Exp $
+###     $Id: makefile.wcc,v 1.3 1995/10/25 05:01:08 cph Exp $
 ###
 ###     Copyright (c) 1992-95 Massachusetts Institute of Technology
 ###
@@ -102,14 +102,13 @@ M4FLAGS = -DWIN32 -DWCC386R
 
 # Assembler options.
 #
-# /4pr         like /4r for compiler
 # /bt=nt       build NT binary (default when host is NT)
 # /d1          generate debug info
 # /fpi         generate in-line 387 insns, emulate if none
 # /fp3         generate in-line 387 insns
 # /mf          use flat memory model
 # /zq          operate quietly
-ASFLAGS = /4pr /d1 /fpi /fp3 /mf /zq
+ASFLAGS = /bt=nt /d1 /fpi /fp3 /mf /zq
 
 all : scheme.exe bchschem.exe bintopsb.exe psbtobin.exe
 
index adab1db6c540e8b44c006251d8d7409b8b3fd238..9bef98122c652112090d7e90f350b76bbd3a411b 100644 (file)
@@ -1,6 +1,6 @@
 ### -*- Fundamental -*-
 ###
-###    $Id: makefile.wcc,v 1.3 1995/10/17 23:06:53 cph Exp $
+###    $Id: makefile.wcc,v 1.4 1995/10/25 05:01:42 cph Exp $
 ###
 ###    Copyright (c) 1994-95 Massachusetts Institute of Technology
 ###
@@ -94,13 +94,12 @@ M4FLAGS = -DOS2 -DDASM -DWCC386R
 
 # Assembler options.
 #
-# /4pr         like /4r for compiler
 # /d1          generate debug info
 # /fpi         generate in-line 387 insns, emulate if none
 # /fp3         generate in-line 387 insns
 # /mf          use flat memory model
 # /zq          operate quietly
-ASFLAGS = /4pr /d1 /fpi /fp3 /mf /zq
+ASFLAGS = /d1 /fpi /fp3 /mf /zq
 \f
 %.obj : %.c
        $(CC) $(CFLAGS) $<