Previous 199869 Revisions Next

r32504 Thursday 2nd October, 2014 at 16:26:47 UTC by smf
(MESS) fix building with official windows tools (nw)

Compiling src/emu/bus/chanf/rom.c...
src/emu/bus/chanf/rom.c: In member function 'UINT8 chanf_rom_device::common_read_2102(UINT32)':
src/emu/bus/chanf/rom.c:144:23: error: suggest parentheses around arithmetic in operand of '|' [-Werror=parentheses]
   return (m_latch[0] & 0x7f | (m_data0 << 7));
                      ^
cc1plus.exe: all warnings being treated as errors
makefile:932: recipe for target 'obj/windows/emu/bus/chanf/rom.o' failed
[src/emu/bus/chanf]rom.c

trunk/src/emu/bus/chanf/rom.c
r32503r32504
141141      {
142142         m_addr = m_addr_latch;
143143         m_data0 = m_ram[m_addr] & 1;
144         return (m_latch[0] & 0x7f | (m_data0 << 7));
144         return (m_latch[0] & 0x7f) | (m_data0 << 7);
145145      }
146146     
147147      return m_latch[0];

Previous 199869 Revisions Next


© 1997-2024 The MAME Team