2024-04-19 09:05:10 +00:00
|
|
|
#ifndef EMU_CPU_RAM_H
|
|
|
|
#define EMU_CPU_RAM_H
|
|
|
|
|
|
|
|
#define RAM_DO_NULL_CHECK
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2024-04-22 13:05:10 +00:00
|
|
|
#include "../cpu_const.h"
|
2024-04-19 09:05:10 +00:00
|
|
|
|
|
|
|
void InitRam();
|
|
|
|
void SetValue(r16_int address, r16_int value);
|
|
|
|
r16_int GetValue(r16_int address);
|
|
|
|
|
|
|
|
#endif
|