Zilog EZ80F916 User Manual
Page 221

UM014423-0607
ZiLOG Developer Studio II
eZ80Acclaim!
®
User Manual
201
BLKB Declaration Type
Syntax
BLKB
number of bytes (8 bits each) [, <init_value>]
Example
BLKB 16 ; Allocate 16 uninitialized bytes.
BLKB 16, -1 ; Allocate 16 bytes and initialize them to -1.
BLKL Declaration Type
Syntax
BLKL
number of longs (32 bits each) [, <init_value>]
Example
BLKL 16 ; Allocate 16 uninitialized longs.
BLKL 16, -1 ; Allocate 16 longs and initialize them to -1.
BLKP Declaration Type
Syntax
BLKP
number of pointers (24 bits each) [, <init_value>]
Example
BLKP 16 ; Allocate 16 uninitialized pointers.
BLKP 16, 0 ; Allocate 16 pointers and initialize them to 0.
BLKW Declaration Type
Syntax
BLKW
number of words (16 bits each) [, <init_value>]
Example
BLKW 16 ; Allocate 16 uninitialized words.
BLKW 16, -1 ; Allocate 16 words and initialize them to -1.
DB Declaration Type
Synonyms
.byte
,
.ascii
,
DEFB
,
FCB
,
STRING
,
.STRING
,
byte
Syntax
DB
byte data (8 bits)