© Thomas Kunz 2000
SCE 574
87
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)
ä