diff options
Diffstat (limited to 'src/sim/ex.cc')
-rw-r--r-- | src/sim/ex.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sim/ex.cc b/src/sim/ex.cc index f286713..1de61d0 100644 --- a/src/sim/ex.cc +++ b/src/sim/ex.cc @@ -1,10 +1,11 @@ #include "ex.h" +#include "instrDTO.h" #include "logger.h" #include "response.h" static Logger *global_log = Logger::getInstance(); -Response EX::advance() +Response EX::advance(InstrDTO &i) { global_log->log(INFO, "hello from execute!"); return OK; |