Pristine Ack-5.5
[Ack-5.5.git] / util / ceg / assemble / as_assemble / block_as.c
1 block_assemble( instructions, nr, first, last)
2
3 /* Assemble a block of assembly instructions. If the table writer wants to
4  * combine assembly instructions he must rewrite this routine to fulfill his
5  * own needs.
6  */
7
8 char **instructions;
9 int nr, first, last;
10 {
11         int i;
12
13         for ( i=0; i<nr; i++)
14                 assemble( instructions[i]);
15 }