mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-02-05 23:54:41 +00:00
9 lines
185 B
C
9 lines
185 B
C
#ifndef MEM_H
|
|
#define MEM_H
|
|
|
|
void mem_init(char *name);
|
|
unsigned int mem_read(unsigned int addr, int ds);
|
|
void mem_write(unsigned int addr, unsigned int data, int ds);
|
|
|
|
#endif // MEM_H
|