Read Source File
.copy/.include
4-37
Assembler Directives
Example 1
In this example, the .copy directive is used to read and assemble source state-
ments from other files; then the assembler resumes assembling into the cur-
rent file.
The original file, copy.asm, contains a .copy statement copying the file
byte.asm. When copy.asm assembles, the assembler copies byte.asm into its
place in the listing (note listing below). The copy file byte.asm contains a .copy
statement for a second file, word.asm.
When it encounters the .copy statement for word.asm, the assembler switches
to word.asm to continue copying and assembling. Then the assembler returns
to its place in byte.asm to continue copying and assembling. After completing
assembly of byte.asm, the assembler returns to copy.asm to assemble its re-
maining statement.
copy.asm
(source file)
byte.asm
(
first copy file)
word.asm
(second copy file)
.space 29
.copy ”byte.asm”
**Back in original file
.pstring ”done”
** In byte.asm
.byte 32,1+ ’A’
.copy ”word.asm”
** Back in byte.asm
.byte 67h + 3q
** In word.asm
.word 0ABCDh, 56q
Listing file:
1 000000 .space 29
2 .copy ”byte.asm”
A 1 ** In byte.asm
A 2 000002 0020 .byte 32,1+ ’A’
000003 0042
A 3 .copy ”word.asm”
B 1 * In word.asm
B 2 000004 ABCD .word 0ABCDh, 56q
000005 002E
A 4 ** Back in byte.asm
A 5 000006 006A .byte 67h + 3q
3
4 ** Back in original file
5 000007 646F .pstring ”done”
000008 6E65
Summary of Contents for TMS320C54x
Page 38: ......
Page 39: ......
Page 40: ......
Page 41: ......
Page 42: ......
Page 43: ......
Page 44: ......
Page 45: ......
Page 46: ......
Page 47: ......
Page 48: ......
Page 49: ......
Page 50: ......
Page 51: ......
Page 52: ......
Page 53: ......
Page 54: ......
Page 55: ......
Page 56: ......
Page 57: ......
Page 58: ......
Page 59: ......
Page 60: ......
Page 61: ......
Page 62: ......
Page 276: ......
Page 277: ......
Page 278: ......
Page 279: ......
Page 280: ......
Page 281: ......
Page 282: ......
Page 283: ......
Page 284: ......
Page 285: ......
Page 286: ......
Page 287: ......
Page 288: ......
Page 289: ......
Page 290: ......
Page 291: ......
Page 292: ......
Page 293: ......
Page 294: ......
Page 295: ......
Page 296: ......
Page 297: ......
Page 298: ......
Page 299: ......
Page 300: ......
Page 301: ......
Page 302: ......