mirror of
https://github.com/jscrane/r65emu.git
synced 2024-12-26 14:29:31 +00:00
19 lines
314 B
C
19 lines
314 B
C
#ifndef __R65EMU_H__
|
|
#define __R65EMU_H__
|
|
|
|
#include "memory.h"
|
|
#include "cpu.h"
|
|
#include "r6502.h"
|
|
#include "ram.h"
|
|
#include "spiram.h"
|
|
#include "prom.h"
|
|
#include "ps2drv.h"
|
|
#include "utftdisplay.h"
|
|
#include "keyboard.h"
|
|
#include "sdtape.h"
|
|
#include "timed.h"
|
|
#include "hardware.h"
|
|
#include "checkpoint.h"
|
|
|
|
#endif
|