mirror of
https://github.com/YohannDR/mzm.git
synced 2024-11-23 13:09:43 +00:00
19 lines
242 B
C
19 lines
242 B
C
#ifndef DISPLAY_H
|
|
#define DISPLAY_H
|
|
|
|
#include "types.h"
|
|
|
|
// Globals
|
|
|
|
|
|
// Structs
|
|
|
|
|
|
// Functions
|
|
|
|
void IoWriteRegisters(void);
|
|
void IoWriteRegistersDuringTransition(void);
|
|
void IoUpdateDISPCNT(u8 operation, u16 value);
|
|
|
|
#endif /* DISPLAY_H */
|