Crossware

Table of Contents        Previous topic       Next topic       

ASSEMBLER DIRECTIVES->Other Assembler Directives->FCB

FCB    Form constant byte

This directive inserts a series of byte values into the object code. The format is:

    FCB [Exprn],[Exprn],[Exprn],....

The expressions are sequentially evaluated and the byte values generated are stored sequentially in the program object code. If an expression is null (nothing is written between the commas or before the first comma) then zero is assigned.

Example:

   1                           nam     fcbxampl    
   2                           ttl     form constant byte
   3 0021            variable  equ     $21         
   4 0000 16 CF 00   label     fcb     $16,%11001111,,variable
     0003 21