diff options
Diffstat (limited to 'src/sim/if.cc')
-rw-r--r-- | src/sim/if.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/sim/if.cc b/src/sim/if.cc new file mode 100644 index 0000000..1026072 --- /dev/null +++ b/src/sim/if.cc @@ -0,0 +1,15 @@ +#include "if.h" +#include "logger.h" +#include "response.h" + +static Logger *global_log = Logger::getInstance(); + +Response IF::advance() +{ + global_log->log(INFO, "hello from fetch!"); + return OK; +} + + + + |