News:

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

What is "embed lists of data..."?

Started by easypie, November 17, 2011, 10:37:45 PM

Previous topic - Next topic

easypie

In AOA, section 3.2.2, there's a way where you I can embed lists of data into the static declaration section. What happens when you embed a list of data? I understand that the data is added in a consecutive order after the variable that the data was assigned to. Like
static:
   b: byte:= 0;
       byte 1,2,3;

Does this create an array?