-Fixed a few more issues in the main emulator code that needed to be done before we can officially start compiling them as C code.

This commit is contained in:
cyberwarriorx 2006-10-03 20:29:42 +00:00
parent ac157aa606
commit 7dc0772317
2 changed files with 3 additions and 4 deletions

View File

@ -1,13 +1,13 @@
SUBDIRS = . $(UI_DIR)
noinst_LIBRARIES = libdesmume.a
libdesmume_a_SOURCES = \
armcpu.cpp armcpu.hpp \
armcpu.cpp armcpu.hpp \
arm_instructions.cpp arm_instructions.hpp \
bios.cpp bios.hpp cp15.cpp cp15.hpp \
Disassembler.c Disassembler.h \
FIFO.c FIFO.h \
debug.c debug.h \
MMU.cpp MMU.hpp NDSSystem.cpp NDSSystem.hpp \
MMU.cpp MMU.hpp NDSSystem.cpp NDSSystem.hpp \
thumb_instructions.cpp thumb_instructions.hpp \
arm7/fw.c arm7/fw.h \
arm7/spi.c arm7/spi.h \

View File

@ -23,8 +23,7 @@
#define ARMINSTRUCTION_H
#include "types.h"
typedef struct armcpu_t armcpu_t;
#include "armcpu.h"
extern u32 (*FASTCALL arm_instructions_set[4096])(armcpu_t * cpu);