mirror of
https://github.com/liuk7071/ChonkyStation.git
synced 2025-04-02 10:52:38 -04:00
15 lines
135 B
C++
15 lines
135 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
#include <iostream>
|
|
#include "Bus.h"
|
|
|
|
|
|
class cop0
|
|
{
|
|
public:
|
|
cop0();
|
|
|
|
public:
|
|
uint32_t regs[32];
|
|
};
|
|
|