Pass target machine's return code back to OS
authorAndrew Waterman <waterman@eecs.berkeley.edu>
Tue, 29 Oct 2013 03:37:39 +0000 (20:37 -0700)
committerAndrew Waterman <waterman@eecs.berkeley.edu>
Tue, 29 Oct 2013 03:38:57 +0000 (20:38 -0700)
riscv/sim.cc
riscv/sim.h
riscv/spike.cc

index 4d61555d0b6a8a440812a4ed4ce6453534df6e44..c800e877a348807b8f1307f7e556967267317f97 100644 (file)
@@ -72,7 +72,7 @@ reg_t sim_t::get_scr(int which)
   }
 }
 
-void sim_t::run()
+int sim_t::run()
 {
   while (htif->tick())
   {
@@ -81,6 +81,7 @@ void sim_t::run()
     else
       step(INTERLEAVE);
   }
+  return htif->exit_code();
 }
 
 void sim_t::step(size_t n)
index e827087ebd784729f3775af4378b91dd879d42e5..34ed6e8a2b0a1433c9f31c363a36d3fbdb26ffb1 100644 (file)
@@ -19,7 +19,7 @@ public:
   ~sim_t();
 
   // run the simulation to completion
-  void run();
+  int run();
   bool running();
   void stop();
   void set_debug(bool value);
index fb2b7da164fc50630cab9f14d34e45521239769c..da564b5cd0f4f877c43abdffd2df2c8e45354634 100644 (file)
@@ -68,5 +68,5 @@ int main(int argc, char** argv)
   }
 
   s.set_debug(debug);
-  s.run();
+  return s.run();
 }