block_as.c 327 B

123456789101112131415
  1. block_assemble( instructions, nr, first, last)
  2. /* Assemble a block of assembly instructions. If the table writer wants to
  3. * combine assembly instructions he must rewrite this routine to fulfill his
  4. * 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. }