mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 16:35:11 +01:00
11 lines
219 B
C
11 lines
219 B
C
#ifndef AGBPRINT_H
|
|
#define AGBPRINT_H
|
|
|
|
void agbPrintEnable(bool enable);
|
|
bool agbPrintIsEnabled();
|
|
void agbPrintReset();
|
|
bool agbPrintWrite(u32 address, u16 value);
|
|
void agbPrintFlush();
|
|
|
|
#endif // AGBPRINT_H
|