Is it just me that aligning qwords doesn't seem to work or did I get the assemble/link parameters or the alignment number wrong...



ALIGN QWORD ;Got an error on this line
somevalue DQ 0h

or

ALIGN 8 ;Same error
somevalue DQ 0h


:confused:
Posted on 2002-01-25 22:07:29 by stryker
	ALIGN 1

ALIGN 2
ALIGN 4
ALIGN 8
ALIGN 16
ALIGN 32
ALIGN 64
ALIGN 63
Produced an output of:
sample1.asm(6) : error A2189: invalid combination with segment alignment : 32

sample1.asm(7) : error A2189: invalid combination with segment alignment : 64
sample1.asm(8) : error A2063: can ALIGN only to power of 2 : 63
This is with ML.EXE 7.0
Posted on 2002-01-26 00:02:57 by bitRAKE
hmm! i'm using ml version 6.15.8803 must be the assembler. Probably, i think i need to update my software... Thanks for the info :)
Posted on 2002-01-26 09:34:55 by stryker
I think you get this error if you have .386. It goes away with .586 and maybe .486. :)
Posted on 2002-01-26 22:27:25 by S/390