opcst.c 206 B

123456789101112131415
  1. #include "em_private.h"
  2. /* $Id$ */
  3. void
  4. CC_opcst(opcode, cst)
  5. arith cst;
  6. {
  7. /* Instruction with a constant argument
  8. Argument types: c, d, l, g, f, n, s, z, o, w, r
  9. */
  10. OP(opcode);
  11. CST(cst);
  12. NL();
  13. }