Skip to content

Commit

Permalink
Enable MARS kernel for MARS64 ISA
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelkryukov authored Mar 18, 2020
1 parent 82c2329 commit b09a401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simulator/kernel/mars/mars_kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ void MARSKernel::connect_exception_handler()
auto isa = sim->get_isa();
if ( isa == "riscv32" || isa == "riscv64")
connect_riscv_handler();
else if ( isa == "mars" || isa == "mips32le" || isa == "mips32")
else if ( isa == "mars" || isa == "mars64" || isa == "mips32le" || isa == "mips32")
connect_mars_handler();
else
throw UnsupportedISA( isa);
Expand Down

0 comments on commit b09a401

Please sign in to comment.