ack/util/ceg/assemble/as_assemble/block_as.c

16 lines
327 B
C
Raw Normal View History

1987-11-20 11:12:07 +00:00
block_assemble( instructions, nr, first, last)
1987-11-26 12:14:32 +00:00
/* 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.
*/
1987-11-20 11:12:07 +00:00
char **instructions;
int nr, first, last;
{
int i;
for ( i=0; i<nr; i++)
assemble( instructions[i]);
}