Removed unused files

This commit is contained in:
avinal
2020-08-09 17:54:38 +05:30
parent 64c1f167d5
commit 3a75610947
4 changed files with 0 additions and 63 deletions

View File

@@ -1,20 +0,0 @@
#pragma once
#ifdef CODE_HPP
#define CODE_HPP
#include <array>
class code
{
private:
const std::string mnemonic;
public:
code(std::string mno) : mnemonic(mno) {}
~code();
std::array<char, 3> dest();
std::array<char, 7> comp();
std::array<char, 3> jump();
};
#endif