opcst.c 225 B

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