Merge branch 'master' of https://github.com/Riyyi/garbage
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2022 Riyyi
|
||||||
|
* Copyright (C) 2022 Th3FrankXD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "apu.h"
|
||||||
|
|
||||||
|
APU::APU()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
APU::~APU()
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -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
@@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2022 Riyyi
|
||||||
|
* Copyright (C) 2022 Th3FrankXD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cpu.h"
|
||||||
|
|
||||||
|
CPU::CPU()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
CPU::~CPU()
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -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
@@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2022 Riyyi
|
||||||
|
* Copyright (C) 2022 Th3FrankXD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "dma.h"
|
||||||
|
|
||||||
|
DMA::DMA()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
DMA::~DMA()
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -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
@@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2022 Riyyi
|
||||||
|
* Copyright (C) 2022 Th3FrankXD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ppu.h"
|
||||||
|
|
||||||
|
PPU ::PPU()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
PPU ::~PPU()
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -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();
|
||||||
|
};
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2022 Riyyi
|
||||||
|
* Copyright (C) 2022 Th3FrankXD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "processingunit.h"
|
||||||
|
|
||||||
|
ProcessingUnit::ProcessingUnit()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
ProcessingUnit::~ProcessingUnit()
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2022 Riyyi
|
||||||
|
* Copyright (C) 2022 Th3FrankXD
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
class ProcessingUnit {
|
||||||
|
public:
|
||||||
|
ProcessingUnit();
|
||||||
|
virtual ~ProcessingUnit();
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user