mirror of
https://github.com/liuk7071/ChonkyStation.git
synced 2025-04-02 10:52:38 -04:00
19 lines
190 B
C++
19 lines
190 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
#include <array>
|
|
#include "memory.h"
|
|
#include "gpu.h"
|
|
|
|
class Bus
|
|
{
|
|
public:
|
|
Bus();
|
|
~Bus();
|
|
public:
|
|
gpu Gpu = gpu();
|
|
memory mem = memory();
|
|
|
|
public:
|
|
|
|
};
|
|
|