Browse Source

Merge branch 'master' of https://github.com/Riyyi/garbage

master
Frank 2 years ago
parent
commit
0e34901b64
  1. 16
      src/apu.cpp
  2. 16
      src/apu.h
  3. 16
      src/cpu.cpp
  4. 16
      src/cpu.h
  5. 16
      src/dma.cpp
  6. 14
      src/dma.h
  7. 16
      src/ppu.cpp
  8. 16
      src/ppu.h
  9. 16
      src/processingunit.cpp
  10. 14
      src/processingunit.h

16
src/apu.cpp

@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "apu.h"
APU::APU()
{
}
APU::~APU()
{
}

16
src/apu.h

@ -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
src/cpu.cpp

@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "cpu.h"
CPU::CPU()
{
}
CPU::~CPU()
{
}

16
src/cpu.h

@ -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
src/dma.cpp

@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "dma.h"
DMA::DMA()
{
}
DMA::~DMA()
{
}

14
src/dma.h

@ -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
src/ppu.cpp

@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "ppu.h"
PPU ::PPU()
{
}
PPU ::~PPU()
{
}

16
src/ppu.h

@ -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
src/processingunit.cpp

@ -0,0 +1,16 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#include "processingunit.h"
ProcessingUnit::ProcessingUnit()
{
}
ProcessingUnit::~ProcessingUnit()
{
}

14
src/processingunit.h

@ -0,0 +1,14 @@
/*
* Copyright (C) 2022 Riyyi
* Copyright (C) 2022 Th3FrankXD
*
* SPDX-License-Identifier: MIT
*/
#pragma once
class ProcessingUnit {
public:
ProcessingUnit();
virtual ~ProcessingUnit();
};
Loading…
Cancel
Save