|
| DB Assembler Statement| Arguments | | | 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 const segment. An error is generated if it is used in a different segment. | | See Also | DBIT, DD, DS, DSB, DSD, DSW, DW | | Example |
MSG: DB 'Press A Key To Continue', 0
TAB: DB 2, 3, 5, 7, 11, 13, 17, 19, ';'
|
|
|