opdlb.c 232 B

12345678910111213141516
  1. #include "em_private.h"
  2. /* $Id$ */
  3. void
  4. CC_opdlb(opcode, dlb, offset)
  5. label dlb;
  6. arith offset;
  7. {
  8. /* Instruction that as a numeric datalabel + offset as argument
  9. Argument types: g
  10. */
  11. OP(opcode);
  12. DOFF(dlb, offset);
  13. NL();
  14. }