.DWORD or .DDW

Directives that specify 32 bit values of the resulting code. According to Convention 6502, the least significant byte is placed first, followed by more significant bytes.

Syntax:

[<label>[:]]     .DDW expr { , expr }
[<label>[:]]     .DWORD expr { , expr }

Example:

alpha:    .DDW $12345678, 0    ; will generate $78, $56, $34, $12, 0, 0, 0, 0
beta:     .DWORD alpha
          .DWORD alpha-1, beta