Data Declarations
(cont.)
ä More examples
ä MyArray   DW   10,0,-5,20,13,6
ä A_Block   DB   100h   DUP(0)
ä Initializes the 100h  values to 0
ä MoreSpace   DW   20 DUP(?)
ä Does not initialize the 20 values
ä A4by3_Array   DW   4   DUP(0,1,-1)