News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

dup doesn't work with labels

Started by ramguru, June 12, 2009, 12:54:15 PM

Previous topic - Next topic

Yuri

I seem to have found a workaround for this problem:

ProcAddr STRUCT
DD 0
ENDS


DATA SECTION

Table ProcAddr 400h DUP <Start>


CODE SECTION

Start:
xor eax,eax
ret


ramguru

WOW! that worked  :clap: thanks  :U