216
Section 3: Assembler
TI
-
89 / TI
-
92 Plus Sierra C Assembler Reference Manual
Not for Distribution
Beta Version February 2, 2001
.align — Align Location Counter
Syntax
.align { 1 | 2 | 4 | 8 }
Description
The .align directive aligns the current section’s location counter to the nearest
multiple of the specified byte count. Any required padding is filled with the current
fill value (see .opt fillval).
Example
.align 2
.word 0x4000
.bin / BIN — Include Contents of Binary File
Syntax
.bin
filename
BIN
filename
Description
filename
The name of a binary file (including an optional absolute or
relative path). It can optionally be enclosed in single or double
quotes.
The BIN directive inserts the contents of the specified binary file at the current
position in the assembler source. If the file is not specified with a full path, it is
searched for in (or, relative to) the following directories in the indicated order:
1. The current directory.
2. Directories specified with the
-I
flag.
3. Directories specified with the environment variables INCLUDE68 or SIERRA
(see section 3.2.4 Environment Variables).
Examples
BIN "table.inc"
BIN "../include/graphics.seg"