Fixed compile error in MSVC.

This commit is contained in:
Aaron Giles 2008-03-28 18:32:09 +00:00
parent cb38b8b0d5
commit c5335ee5d4

View File

@ -9,7 +9,7 @@
***************************************************************************/
#define INSTRUCTION(mnemonic) static inline void (mnemonic)(UINT8 opcode)
#define INSTRUCTION(mnemonic) INLINE void (mnemonic)(UINT8 opcode)
#define ROM(addr) cpu_readop(addr)
#define RAM_W(addr, value) (data_write_byte_8(addr, value))