Dump EEPROM to ensure low level memory access is working correctly

This commit is contained in:
2024-09-20 18:03:34 +02:00
parent 29b0ace897
commit 190ecea855
5 changed files with 57 additions and 9 deletions

View File

@@ -8,7 +8,8 @@ struct mem_data_s {
word value[2]; // Values to be written
};
int MEM_Read(mem_data_t *out);
int MEM_Write(mem_data_t *in);
int MEM_Read(mem_data_t *out);
int MEM_Write(mem_data_t *in);
void MEM_Dump(void);
#endif // MAD_CORE_COMMON_MEMORY_H