1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-13 01:29:57 +00:00

Temporarily disable assert checking if instr was implemented.

This commit is contained in:
Radosław Kujawa 2017-01-18 14:37:24 +01:00
parent bd0eeea144
commit 3032baeac4

View File

@ -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) {