From 5a97139eeecac32b8127393be7fcdb23a8e98ff6 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Fri, 26 Jul 2013 04:15:57 -0700 Subject: Rip out RVC for now --- riscv/processor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'riscv/processor.cc') diff --git a/riscv/processor.cc b/riscv/processor.cc index 5d82937..3bd4a19 100644 --- a/riscv/processor.cc +++ b/riscv/processor.cc @@ -132,7 +132,7 @@ void processor_t::step(size_t n, bool noisy) // execute_insn fetches and executes one instruction #define execute_insn(noisy) \ do { \ - mmu_t::insn_fetch_t fetch = _mmu.load_insn(npc, sr & SR_EC); \ + mmu_t::insn_fetch_t fetch = _mmu.load_insn(npc); \ if(noisy) disasm(fetch.insn, npc); \ npc = fetch.func(this, fetch.insn, npc); \ pc = npc; \ -- cgit v1.1