opdnam.c 229 B

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