Fixed clang compile. (nw)

This commit is contained in:
Curt Coder 2014-02-27 13:10:03 +00:00
parent f273d09bd5
commit 842ff9956d
2 changed files with 5 additions and 5 deletions

View File

@ -46,9 +46,9 @@ ti990_10_device::ti990_10_device(const machine_config &mconfig, const char *tag,
m_program_config("program", ENDIANNESS_BIG, 16, 16),
m_io_config("cru", ENDIANNESS_BIG, 8, 12),
m_prgspace(NULL),
m_cru(NULL),
m_prgaddr_mask((1<<16)-1),
m_cruaddr_mask((1<<12)-1)
m_cru(NULL)
//m_prgaddr_mask((1<<16)-1),
//m_cruaddr_mask((1<<12)-1)
{
}

View File

@ -67,8 +67,8 @@ protected:
private:
// Max address
const UINT16 m_prgaddr_mask;
const UINT16 m_cruaddr_mask;
//UINT16 m_prgaddr_mask;
//UINT16 m_cruaddr_mask;
UINT16 m_state_any;
};