Fixes #32 - Strict mode is always enabled

This commit is contained in:
Stefan Arentz 2016-11-21 22:43:35 -05:00
parent a57248f086
commit a1f656b630

2
cpu.c
View File

@ -325,7 +325,7 @@ void cpu_add_iom(struct cpu_t *cpu, uint16_t start, uint16_t length, void *obj,
}
void cpu_strict(struct cpu_t *cpu, bool strict) {
cpu->strict = true;
cpu->strict = strict;
}
int cpu_trace(struct cpu_t *cpu, char *path) {