Frank
2 years ago
10 changed files with 156 additions and 0 deletions
@ -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(); |
||||||
|
}; |
@ -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(); |
||||||
|
}; |
@ -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(); |
||||||
|
}; |
@ -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() |
||||||
|
{ |
||||||
|
} |
Loading…
Reference in new issue