15 lines
203 B
C
15 lines
203 B
C
#include "em_code.h"
|
|
#include "em_private.h"
|
|
|
|
/* $Id$ */
|
|
|
|
void CC_opnarg(int opcode)
|
|
{
|
|
/* Instruction with optional argument, but now without one
|
|
Argument types: w
|
|
*/
|
|
OP(opcode);
|
|
CCEND();
|
|
NL();
|
|
}
|