A166 User's Guide

DB Assembler Statement

Arguments
label〚:〛〛 DB expression 〚, expression ...〛
Description

The DB statement initializes memory with one or more byte values. label is a symbol that is assigned the current memory address. expression is a byte value that is stored in memory. Each expression may be a symbol, a string, or an expression.

The DB statement may be specified only within a code or data section. An error is generated if it is used in a bit section.

See Also

DBIT, DD, DF32, DF64, DS, DSB, DSD, DSW, DW

Example
MSG:    DB      'Press A Key To Continue', 0
TAB:    DB      2, 3, 5, 7, 11, 13, 17, 19, ';'