16 lines
413 B
C
16 lines
413 B
C
#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_ */ |