mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-29 08:44:15 +01:00
20 lines
320 B
C
20 lines
320 B
C
#ifndef WRITEBACK_H__
|
|
#define WRITEBACK_H__
|
|
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
|
|
#define WRITEBACK_SECTOR_TABLE_SIZE (1024)
|
|
|
|
|
|
void writeback_load_sector_table (uint32_t address);
|
|
void writeback_enable (void);
|
|
void writeback_disable (void);
|
|
void writeback_init (void);
|
|
void writeback_process (void);
|
|
|
|
|
|
#endif
|