Newer
Older
emul / emul_mem.h
#ifndef EMUL_MEM__
#define EMUL_MEM__

#define EMUL_MEMSIZE 4294967296
//#define EMUL_MEMSIZE 1024

void add();

int emul_mem_get(int address);

void emul_mem_set(int address, int byte);

int emul_mem_get_word(int address);

void emul_mem_set_word(int address, int word);

#endif