Mail Archives: djgpp/2002/09/20/22:45:24
From: | NoEmailAds AT execpc DOT com (Chris Giese)
|
Newsgroups: | comp.os.msdos.djgpp
|
Subject: | 'as' no longer supports overloaded macros?
|
Date: | Sat, 21 Sep 2002 02:37:45 GMT
|
Organization: | PROPULSION GROUP
|
X-Newsreader: | Forte Free Agent 1.21/32.243
|
Lines: | 40
|
Message-ID: | <3d8bdb9b$0$1430$272ea4a1@news.execpc.com>
|
NNTP-Posting-Host: | 628d8163.news.execpc.com
|
X-Trace: | DXC=ML6TnIA4\L0m]<:EDX4Q56bhiU1EQ[HI=0ICGTaT\Bl==EV;d7?Dn`=hccnS AT Z5BD8DH<Lek<bnL:08D32YADAX6
|
X-Complaints-To: | abuse AT execpc DOT com
|
To: | djgpp AT delorie DOT com
|
DJ-Gateway: | from newsgroup comp.os.msdos.djgpp
|
Reply-To: | djgpp AT delorie DOT com
|
Say it ain't so!
c:\tmp>type test.s
.macro IMP sym
.EXTERN _\sym
.EQU \sym,_\sym
.endm
.macro IMP sym1 sym2 sym3
.EXTERN _\sym1
.EQU \sym1,_\sym1
.EXTERN _\sym2
.EQU \sym2,_\sym2
.EXTERN _\sym3
.EQU \sym3,_\sym3
.endm
IMP _code, _data, _end
.text
IMP main
call main
c:\tmp>as test.s
test.s: Assembler messages:
test.s:19: Error: expected symbol name
test.s:19: Error: expected symbol name
c:\tmp>as --version
GNU assembler 2.13
{here I change back to old version of DJGPP}
c:\tmp>as test.s
c:\tmp>as --version
GNU assembler 2.9.5
- Raw text -