Making the RAM a template

This commit is contained in:
AnonymusRaccoon
2020-02-13 18:22:17 +01:00
parent 2735238329
commit 41355191aa
10 changed files with 70 additions and 83 deletions
@@ -1,10 +0,0 @@
//
// Created by anonymus-raccoon on 2/5/20.
//
#include "CommonInstructions.hpp"
namespace ComSquare::CPU
{
}
@@ -1,16 +0,0 @@
//
// Created by anonymus-raccoon on 2/5/20.
//
#ifndef COMSQUARE_COMMONINSTRUCTIONS_HPP
#define COMSQUARE_COMMONINSTRUCTIONS_HPP
namespace ComSquare::CPU
{
//! @brief The shared states of the Main's CPU and the APU's CPU.
class CommonInstructions {
};
}
#endif //COMSQUARE_COMMONINSTRUCTIONS_HPP
@@ -0,0 +1,13 @@
//
// Created by anonymus-raccoon on 2/13/20.
//
#include "../CPU.hpp"
namespace ComSquare::CPU
{
void CPU::SEP(uint24_t addr)
{
}
}