diff options
| author | Robert Norton | 2018-06-26 16:42:29 +0100 |
|---|---|---|
| committer | Robert Norton | 2018-06-26 16:43:48 +0100 |
| commit | 6f5ea4c44bf6569b9daf86dce61bba150b9bb389 (patch) | |
| tree | 84c599f2917c63f203dbb37d53d2f08edc5ace2e /mips/main.sail | |
| parent | d2d227a23d96c11b619ec17d9e35d82bef543a62 (diff) | |
mips: comment out printing of EXCEPTION on every ISA exception.
Diffstat (limited to 'mips/main.sail')
| -rw-r--r-- | mips/main.sail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mips/main.sail b/mips/main.sail index 1d3b0bd1..c34a7ae3 100644 --- a/mips/main.sail +++ b/mips/main.sail @@ -37,7 +37,7 @@ function fetch_and_execute () = { None() => { print("Decode failed"); loop_again=false } /* Never expect this -- unknown instruction should actually result in reserved instruction ISA-level exception (see mips_ri.sail). */ } } catch { - ISAException() => prerr_endline("EXCEPTION") + ISAException() => () /*prerr_endline("EXCEPTION")*/ /* ISA-level exception occurrred either during TranslatePC or execute -- just continue from nextPC, which should have been set to the appropriate exception vector (along with clearing branchPending etc.) . */ |
