diff options
author | 2008-06-26 15:24:55 +0000 | |
---|---|---|
committer | 2008-06-26 15:24:55 +0000 | |
commit | ea3780417a03fb4ef6540bc4cf68200e72bd96f1 (patch) | |
tree | 4a5c1818a72e3e92243217d052b3139c8764ed1c /src/emu/cpu/alph8201 | |
parent | 07023d6787dc5e3081b3247d50d1e14d243a57d5 (diff) |
From: Atari Ace [mailto:atari_ace@verizon.net]
Subject: [patch] Fix minor CPU/SOUND core build issues
Hi mamedev,
This small patch fixes a few build problems with the cpu/sound cores
M65CE02, ALPHA8201, TMC0285, TMS5200 and corrects the dependencies for
the mips core.
~aa
Diffstat (limited to 'src/emu/cpu/alph8201')
-rw-r--r-- | src/emu/cpu/alph8201/alph8201.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/cpu/alph8201/alph8201.c b/src/emu/cpu/alph8201/alph8201.c index 532cdc2f61f..a2313b351ab 100644 --- a/src/emu/cpu/alph8201/alph8201.c +++ b/src/emu/cpu/alph8201/alph8201.c @@ -305,6 +305,7 @@ INLINE void M_UNDEFINED2(void) static void undefined(void) { M_UNDEFINED(); } static void undefined2(void) { M_UNDEFINED2(); } +#if (HAS_ALPHA8301) static void need_verify(const char *s) { UINT8 op = M_RDOP(PC-1); @@ -316,6 +317,7 @@ static void need_verify(const char *s) debugger_break(Machine); #endif } +#endif #if 0 static void need_verify2(const char *s) |