summary refs log tree commit diff
path: root/src/instruction/invalid.c
blob: 7110bb96288bcba0fa28c005776ddf46edf5583f (plain)
1
2
3
4
5
6
7
8
#include "3cl.h"

#include "utils.h"

struct CCLFrame *ccl_instruction_invalid(struct CCL *ccl, struct CCLFrame *frame)
{
    die(1, "Invalid instruction at %d", frame->ep - 1);
}