Assembler Directives - DCB


DCB - The Define Constant Block directive fills a block of memory with the specified value. The instruction format is:

Usage:
[label] DCB[.size] length,value

The label and size fields are optional. Size defaults to .W if omitted.

        DCB.W    10,$FF            fill 10 words with $00FF