mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-25 07:06:52 +01:00
15 lines
218 B
C
15 lines
218 B
C
|
#ifndef WRITEBACK_H__
|
||
|
#define WRITEBACK_H__
|
||
|
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void writeback_set_sd_info (uint32_t address, bool enabled);
|
||
|
void writeback_init (void);
|
||
|
void writeback_process (void);
|
||
|
|
||
|
|
||
|
#endif
|