mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-25 15:16:53 +01:00
14 lines
192 B
C
14 lines
192 B
C
#ifndef FLASH_H__
|
|
#define FLASH_H__
|
|
|
|
|
|
#include "sys.h"
|
|
|
|
|
|
uint32_t flash_size (void);
|
|
void flash_read (uint32_t sdram_offset);
|
|
void flash_program (uint32_t sdram_offset);
|
|
|
|
|
|
#endif
|