Allocates a bit area of one bit.
[Syntax]
Symbol field
|
Mnemonic field
|
Operand field
|
Comment field
|
[name]
|
.DBIT
|
|
[; comment]
|
[Function]
- | Allocates a bit area of one bit. |
[Description]
- | This directive can be written in only a bit section. |
- | This directive is used to allocate a bit area of one bit in a bit section. |
- | The contents of the allocated bit area are undefined. |
- | When a name is written in the symbol field, it will be defined as a bit symbol which has an address and bit location as its value. |
[Example]
.BSEG
BSYM1 .DBIT ; Bit area of one bit is allocated
.DBIT ; Bit area of one bit is allocated
BSYM2 .DBIT ; Bit area of one bit is allocated
.CSEG
SET1 BSYM1
CLR1 BSYM2
|