9 lines
208 B
C
9 lines
208 B
C
#include <mie/instr.h>
|
|
|
|
void mie_instr_init(struct mie_instr *instr, enum mie_instr_type type)
|
|
{
|
|
memset(instr, 0x0, sizeof *instr);
|
|
mie_value_init(&instr->i_base, MIE_VALUE_INSTR);
|
|
instr->i_type = type;
|
|
}
|