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...
:confused:
ALIGN QWORD ;Got an error on this line
somevalue DQ 0h
or
ALIGN 8 ;Same error
somevalue DQ 0h
:confused:
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.0hmm! 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 :)
I think you get this error if you have .386. It goes away with .586 and maybe .486. :)