mirror of
https://github.com/holub/mame
synced 2025-04-27 18:53:05 +03:00
Compile Fix for mess (nw)
This commit is contained in:
parent
0909ab8305
commit
8489d422c4
@ -79,8 +79,8 @@ protected:
|
|||||||
virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
|
virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
|
||||||
|
|
||||||
inline void get_sp();
|
inline void get_sp();
|
||||||
inline UINT8 mem_readbyte(UINT32 offset);
|
UINT8 mem_readbyte(UINT32 offset);
|
||||||
inline void mem_writebyte(UINT32 offset, UINT8 data);
|
void mem_writebyte(UINT32 offset, UINT8 data);
|
||||||
inline UINT16 mem_readword(UINT32 address) { return (mem_readbyte(address ) << 8) | (mem_readbyte(address+1)); }
|
inline UINT16 mem_readword(UINT32 address) { return (mem_readbyte(address ) << 8) | (mem_readbyte(address+1)); }
|
||||||
inline void mem_writeword(UINT32 address, UINT16 value) { mem_writebyte(address, value >> 8); mem_writebyte(address+1, value); }
|
inline void mem_writeword(UINT32 address, UINT16 value) { mem_writebyte(address, value >> 8); mem_writebyte(address+1, value); }
|
||||||
inline void take_interrupt(UINT16 vector);
|
inline void take_interrupt(UINT16 vector);
|
||||||
|
Loading…
Reference in New Issue
Block a user