ObjAsm 4.01 Macro suffix warning
Colin (478) 2433 posts |
When I try to use a suffix in a macro (see example below) I always get the warning “Macro ‘test’ ignores suffix parameter”. In pre-UAL mode an object file is created. In UAL mode I get the same warning but the compilation fails with “Unknown opcode”. Using DecAOF on the object file shows it has compiled correctly
|
Rick Murray (539) 13806 posts |
Shouldn’t that be:
…with a space between the macro name and the parameter part; as is described in the macro syntax in the assembler guide. |
Colin (478) 2433 posts |
No it’s a new feature in objasm 4 |
John Tytgat (244) 13 posts |
Don’t know what the problem would be and that example works fine with AsAsm |
Timothy Baldwin (184) 242 posts |
ObjAsm shuts up if you add a label parameter: MACRO $label test$cond $label mov$cond r0,r1 MEND |