ImageCraft Assembly Language Guide, Document # 001-44475 Rev. *B
81
Assembler Directives
5.5
Define Byte
DB
Reserves bytes of ROM and assigns the specified values to the reserved bytes. This directive is
useful for creating data tables in ROM.
Arguments may be constants or labels. The length of the source line limits the number of arguments
in a
DB
directive.
Directive
Arguments
DB
< value1 > [ , value2, ..., valuen ]
Example:
3 bytes are defined starting at address 3000.
MyNum: EQU 77h
ORG 3000h
MyTable:
DB 55h, 66h, MyNum
Summary of Contents for PSoC DESIGNER ImageCraft M8C
Page 6: ...6 ImageCraft Assembly Language Guide Document 001 44475 Rev B Contents Feedback ...
Page 10: ...10 ImageCraft Assembly Language Guide Document 001 44475 Rev B Introduction Feedback ...
Page 24: ...24 ImageCraft Assembly Language Guide Document 001 44475 Rev B M8C Microprocessor Feedback ...
Page 95: ...ImageCraft Assembly Language Guide Document 001 44475 Rev B 95 Assembler Directives Feedback ...
Page 96: ...96 ImageCraft Assembly Language Guide Document 001 44475 Rev B Assembler Directives Feedback ...
Page 104: ...104 ImageCraft Assembly Language Guide Document 001 44475 Rev B Feedback ...
Page 108: ...108 ImageCraft Assembly Language Guide Document 001 44475 Rev B Index Feedback ...