Sorry for my English
I require a file in my program and i was thinking put in the code.. exactly in .data section.
The size of the file is 2200 bytes... so i try this code...
.data
my_file dd 12345678h,
dd 87654321h,
...etc...
i get this error..
code.asm(512) : error A2042: statement too complex
code.asm(512) : error A2039: line too long
Can i put the file of this way?? or i need a resource file?
I prefer this way..
Just do it without the commas.
.data
my_file dd 12345678h
dd 87654321h
...etc...
commas if the same line
no comma at the end
data1 dd 12345678h,12345678h,12345678h
dd 12345678h,12345678h,12345678h
Ohh god... you save my night
thanks both