mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-16 21:10:58 +00:00
20 lines
340 B
C
20 lines
340 B
C
#ifndef __R65EMU_H__
|
|
#define __R65EMU_H__
|
|
|
|
#include "memory.h"
|
|
#include "CPU.h"
|
|
#include "ram.h"
|
|
#include "spiram.h"
|
|
#include "prom.h"
|
|
#include "ps2drv.h"
|
|
#include "tftdisplay.h"
|
|
#include "keyboard.h"
|
|
#include "sdtape.h"
|
|
#include "timed.h"
|
|
#include "hardware.h"
|
|
#include "checkpoint.h"
|
|
#include "sound_dac.h"
|
|
#include "sound_pwm.h"
|
|
|
|
#endif
|