The MASM Forum Archive 2004 to 2012

Project Support Forums => HLA Forum => Topic started by: easypie on November 17, 2011, 10:37:45 PM

Title: What is "embed lists of data..."?
Post by: easypie on November 17, 2011, 10:37:45 PM
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?