◄Operator Summary► ◄Summary► ────────────────────────────────────────────────────────────────────────────── Syntax: ? Used as an initializer in data declarations; indicates a value that the assembler allocates but does not initialize. Can be used alone or with DUP, as in the following examples: foo DW ? ; Allocate one uninitialized word foo2 DB ?,?,? ; Allocate three uninitialized bytes foo3 DB 20 DUP (?) ; Allocate 20 uninitialized bytes -♦-