.db

Initiates a Byte-oriented data block. May be used in data structures only.

Example 1, Data Structure in Flash:

data test
  .db 1,2,"Hello",0
enddata

Example 2, Data Structure in eeprom:

eeprom test
  .db 1,2,"Hello",0
endeeprom