From 3032baeac417de258ec6aeb821be17366fe3b3da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Wed, 18 Jan 2017 14:37:24 +0100 Subject: [PATCH] Temporarily disable assert checking if instr was implemented. --- src/instruction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instruction.c b/src/instruction.c index 643fac9..e806163 100644 --- a/src/instruction.c +++ b/src/instruction.c @@ -19,7 +19,7 @@ instruction_fetch(bus_t *b, uint16_t addr) op = bus_read_1(b, addr); i.def = instrdef_get(op); - assert(i.def.opcode != OP_UNIMPL); + //assert(i.def.opcode != OP_UNIMPL); /* handle operands */ switch (i.def.mode) {