The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: Yuri on September 18, 2010, 10:20:52 AM

Title: Strange behaviour of macros
Post by: Yuri on September 18, 2010, 10:20:52 AM
Apparently this should be OK:

macro1(arg1, arg2) MACRO
    mov eax,arg1
    mov edx,arg2
ENDM


CODE SECTION

Start:
    macro1([eax+4], 0)
    ret


But it produces an error:
Quote
GoAsm.Exe Version 0.56.8 - Copyright Jeremy Gordon 2001/9 - JG@JGnet.co.uk

Error!
Line 10 of assembler source file (macro.asm):-
Use square brackets to address memory, ADDR or OFFSET to get address:-
mov edx,arg2

If I swap the arguments and write macro1(0, [eax+4]), it assembles OK.

However, if I add one more argument to the macro:

macro1(arg1, arg2, arg3) MACRO
    mov eax,arg1
    mov edx,arg2
    mov ecx,arg3
ENDM


CODE SECTION

Start:
    macro1(0, [eax+4], 0)
    ret


I get another error:
Quote
Error!
Line 11 of assembler source file (macro.asm):-
Unexpected material after end of square brackets:-
mov edx,([eax+4])
Title: Re: Strange behaviour of macros
Post by: donkey on September 18, 2010, 04:26:33 PM
Hi Yuri,

This is definitely a bug, Jeremy will have to address it. For the time being push/pop should work.

Edgar
Title: Re: Strange behaviour of macros
Post by: Yuri on September 19, 2010, 01:57:37 AM
Quote from: donkey on September 18, 2010, 04:26:33 PM
For the time being push/pop should work.
What do you mean? ::)
Title: Re: Strange behaviour of macros
Post by: donkey on September 19, 2010, 06:07:30 AM
Hi Yuri,

Sorry, I was incorrect the bug extends to push/pop as well. However it only seems to be present when the first parameter is complex, ie [eax+4], for example using [eax] as the first parameter does not throw an error.
Title: Re: Strange behaviour of macros
Post by: Yuri on September 19, 2010, 07:17:12 AM
Yes, you are right, I also noticed that. Unfortunately, I need to pass complex ones, members of a structure with the base address in a register.

Odd error. In fact, this must be plain substitution, just take what I wrote, omit leading/trailing spaces and paste what remains. Why does it matter — [eax] or [eax+4]?