block_as.c 355 B

123456789101112131415
  1. block_assemble( instructions, nr, first, last)
  2. /* Assembles a block of assembly instructions. If the table writer wants
  3. * to combine a block of instructions (e.g., push/pop optimization) he
  4. * should changes this routine to his own needs.
  5. */
  6. char **instructions;
  7. int nr, first, last;
  8. {
  9. int i;
  10. for ( i=0; i<nr; i++)
  11. assemble( instructions[i]);
  12. }