summaryrefslogtreecommitdiff
path: root/src/sim/ex.cc
blob: 1de61d061df8124c90a8161305c3956265b9962f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "ex.h"
#include "instrDTO.h"
#include "logger.h"
#include "response.h"

static Logger *global_log = Logger::getInstance();

Response EX::advance(InstrDTO &i)
{
	global_log->log(INFO, "hello from execute!");
	return OK;
}