The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: Yuri on August 11, 2009, 06:18:34 AM

Title: Structures: error when overriding DUPs with strings
Post by: Yuri on August 11, 2009, 06:18:34 AM
Hi Jeremy!

The problem occurs when the string is placed on the next line after the continuation mark "\". For example:

Files STRUCT
InFile   DB 260 DUP 0
InSize   DD 0
OutFile  DB 260 DUP 0
OutSize  DD 0
ENDS


DATA SECTION

Sample Files  <"C:\temp.txt", 1024, \
                "D:\test.txt", 1024>


CODE SECTION

Start:
xor eax,eax
ret


Trying to compile this, I get the following error:
Quote
GoAsm.Exe Version 0.56.7 - Copyright Jeremy Gordon 2001/9 - JG@JGnet.co.uk

Error!
Line 11 of assembler source file (struct.asm):-
Faulty quoted string
DB

OBJ file not made

However, if the first element on the next line is a number, all goes well. Like this:

Sample Files  <"C:\temp.txt", \
                1024, "D:\test.txt", 1024>

Title: Re: Structures: error when overriding DUPs with strings
Post by: jorgon on August 12, 2009, 05:12:09 PM
Hi Yuri

Thanks for reporting this.

I would propose to add a fix for this to the version of GoAsm which I am working on at the moment, which will incorporate runtime conditionals.

Title: Re: Structures: error when overriding DUPs with strings
Post by: Yuri on August 12, 2009, 05:49:45 PM
Of course, Jeremy, take your time. This is in no case a big problem.
Title: Re: Structures: error when overriding DUPs with strings
Post by: jorgon on September 15, 2009, 05:44:45 AM
Hi Yuri

This has now been fixed in GoAsm (Version 0.56.8) (http://www.jorgon.freeserve.co.uk/Goasm.zip).
However, this new version does not yet support runtime conditionals, which I am still working on.