16 lines
327 B
C
16 lines
327 B
C
block_assemble( instructions, nr, first, last)
|
|
|
|
/* Assemble a block of assembly instructions. If the table writer wants to
|
|
* combine assembly instructions he must rewrite this routine to fulfill his
|
|
* own needs.
|
|
*/
|
|
|
|
char **instructions;
|
|
int nr, first, last;
|
|
{
|
|
int i;
|
|
|
|
for ( i=0; i<nr; i++)
|
|
assemble( instructions[i]);
|
|
}
|