mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
16 lines
123 B
C
16 lines
123 B
C
|
|
||
|
#ifndef CP15_H
|
||
|
#define CP15_H
|
||
|
|
||
|
namespace CP15
|
||
|
{
|
||
|
|
||
|
void Reset();
|
||
|
|
||
|
void Write(u32 id, u32 val);
|
||
|
u32 Read(u32 id);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|