mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-22 14:09:16 +01:00
21 lines
428 B
C
21 lines
428 B
C
#ifndef SC64_CONTROL_H__
|
|
#define SC64_CONTROL_H__
|
|
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
|
|
void sc64_control_sdram_writable(bool is_enabled);
|
|
void sc64_control_embedded_flash_access(bool is_enabled);
|
|
|
|
uint32_t sc64_control_version_get(void);
|
|
|
|
void sc64_control_ddipl_access(bool is_enabled);
|
|
|
|
void sc64_control_ddipl_address_set(uint32_t address);
|
|
uint32_t sc64_control_ddipl_address_get(void);
|
|
|
|
|
|
#endif
|