summaryrefslogtreecommitdiff
path: root/src/Misc.cpp
blob: 767aed62f302dbee698153c3f77a008878ce5357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "Misc.h"

#include "ExecutorCases.h"
#include "CPUContext.h"

#include <iostream>

namespace executor_cases {
  void Nop(CPUContext& cc){
    std::cout << "[Instruction] nop" << std::endl;
  }
}