1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-08 23:29:28 +00:00

fix compile error

This commit is contained in:
Stephen Crane 2018-08-14 10:23:45 +01:00
parent 5f0e16697d
commit 76fefa99c6

View File

@ -12,16 +12,16 @@
#include <UTFT.h> #include <UTFT.h>
#include "memory.h"
#include "ps2drv.h"
#include "CPU.h"
#if defined(SPIRAM_CS) #if defined(SPIRAM_CS)
#include <SpiRAM.h> #include <SpiRAM.h>
#include "spiram.h" #include "spiram.h"
spiram sram(SPIRAM_SIZE); spiram sram(SPIRAM_SIZE);
#endif #endif
#include "ps2drv.h"
#include "memory.h"
#include "CPU.h"
Memory memory; Memory memory;
PS2Driver ps2; PS2Driver ps2;