2015-06-24 23:41:46 +01:00

15 lines
242 B
C

#include "em_code.h"
#include "em_private.h"
/* $Id$ */
void CC_opdlb(int opcode, label dlb, arith offset)
{
/* Instruction that as a numeric datalabel + offset as argument
Argument types: g
*/
OP(opcode);
DOFF(dlb, offset);
NL();
}