This commit is contained in:
Frank
2022-08-17 22:46:29 +02:00
10 changed files with 156 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "apu.h"
APU::APU()
{
}
APU::~APU()
{
}
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include "processingunit.h"
class APU : public ProcessingUnit {
public:
APU();
virtual ~APU();
};
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "cpu.h"
CPU::CPU()
{
}
CPU::~CPU()
{
}
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include "processingunit.h"
class CPU final : public ProcessingUnit {
public:
CPU();
virtual ~CPU();
};
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "dma.h"
DMA::DMA()
{
}
DMA::~DMA()
{
}
+14
View File
@@ -0,0 +1,14 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#pragma once
class DMA {
public:
DMA();
virtual ~DMA();
};
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "ppu.h"
PPU ::PPU()
{
}
PPU ::~PPU()
{
}
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include "processingunit.h"
class PPU final : public ProcessingUnit {
public:
PPU();
virtual ~PPU();
};
+16
View File
@@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "processingunit.h"
ProcessingUnit::ProcessingUnit()
{
}
ProcessingUnit::~ProcessingUnit()
{
}
+14
View File
@@ -0,0 +1,14 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#pragma once
class ProcessingUnit {
public:
ProcessingUnit();
virtual ~ProcessingUnit();
};