1987-11-20 11:12:07 +00:00
|
|
|
block_assemble( instructions, nr, first, last)
|
1987-11-26 12:00:32 +00:00
|
|
|
|
|
|
|
/* Assembles a block of assembly instructions. If the table writer wants
|
|
|
|
* to combine a block of instructions (e.g., push/pop optimization) he
|
|
|
|
* should changes this routine to 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]);
|
|
|
|
}
|