1994-06-24 11:31:16 +00:00

16 lines
206 B
C

#include "em_private.h"
/* $Id$ */
void
CC_opcst(opcode, cst)
arith cst;
{
/* Instruction with a constant argument
Argument types: c, d, l, g, f, n, s, z, o, w, r
*/
OP(opcode);
CST(cst);
NL();
}