Legacy branch migration
This commit is contained in:
16
firmware/devices/memory.h
Normal file
16
firmware/devices/memory.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef MEMORY_H_
|
||||
#define MEMORY_H_
|
||||
|
||||
/**** Includes ****/
|
||||
#include <stdint.h>
|
||||
|
||||
/**** Public function declarations ****/
|
||||
uint8_t MEM_Read8b(uint8_t address);
|
||||
uint16_t MEM_Read16b(uint8_t address);
|
||||
uint32_t MEM_Read32b(uint8_t address);
|
||||
|
||||
void MEM_Write8b(uint8_t address, uint8_t value);
|
||||
void MEM_Write16b(uint8_t address, uint16_t value);
|
||||
void MEM_Write32b(uint8_t address, uint32_t value);
|
||||
|
||||
#endif /* MEMORY_H_ */
|
||||
Reference in New Issue
Block a user