.dl
.long

 
The .dl and .long statements are used to define a series of 32 bit data word values. The values must be in the range 0 to 0xffffffff.
syntax:
        [<label>] .dl   <expr> [, <expr> [, <expr> ...]]
        [<label>] .long <expr> [, <expr> [, <expr> ...]]
BEWARE: defining long words in the code section of a CPU that has a program counter that counts in words will cause the length of the block of data to be reported as half the expected size. This will not affect the data stored, just the observed length.