15 lines
183 B
C
15 lines
183 B
C
#include "em_private.h"
|
|
|
|
/* $Header$ */
|
|
|
|
CC_opilb(opcode, ilb)
|
|
label ilb;
|
|
{
|
|
/* Instruction with instruction label argument
|
|
Argument types: b
|
|
*/
|
|
OP(opcode);
|
|
CILB(ilb);
|
|
NL();
|
|
}
|