diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/emu/video/crt9007.c | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/emu/video/crt9007.c')
-rw-r--r-- | src/emu/video/crt9007.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/emu/video/crt9007.c b/src/emu/video/crt9007.c index 02195c56f38..f3e1bc98609 100644 --- a/src/emu/video/crt9007.c +++ b/src/emu/video/crt9007.c @@ -179,10 +179,10 @@ enum // operation modes enum { - OPERATION_MODE_REPETITIVE_MEMORY_ADDRESSING = 0, // not implemented + OPERATION_MODE_REPETITIVE_MEMORY_ADDRESSING = 0, // not implemented OPERATION_MODE_DOUBLE_ROW_BUFFER = 1, - OPERATION_MODE_SINGLE_ROW_BUFFER = 4, // not implemented - OPERATION_MODE_ATTRIBUTE_ASSEMBLE = 7 // not implemented + OPERATION_MODE_SINGLE_ROW_BUFFER = 4, // not implemented + OPERATION_MODE_ATTRIBUTE_ASSEMBLE = 7 // not implemented }; @@ -190,23 +190,23 @@ enum enum { ADDRESS_MODE_SEQUENTIAL_ADDRESSING = 0, - ADDRESS_MODE_SEQUENTIAL_ROLL_ADDRESSING, // not implemented - ADDRESS_MODE_CONTIGUOUS_ROW_TABLE, // not implemented - ADDRESS_MODE_LINKED_LIST_ROW_TABLE // not implemented + ADDRESS_MODE_SEQUENTIAL_ROLL_ADDRESSING, // not implemented + ADDRESS_MODE_CONTIGUOUS_ROW_TABLE, // not implemented + ADDRESS_MODE_LINKED_LIST_ROW_TABLE // not implemented }; // interrupt enable register bits -const int IE_VERTICAL_RETRACE = 0x40; -const int IE_LIGHT_PEN = 0x20; -const int IE_FRAME_TIMER = 0x01; +const int IE_VERTICAL_RETRACE = 0x40; +const int IE_LIGHT_PEN = 0x20; +const int IE_FRAME_TIMER = 0x01; // status register bits -const int STATUS_INTERRUPT_PENDING = 0x80; -const int STATUS_VERTICAL_RETRACE = 0x40; -const int STATUS_LIGHT_PEN_UPDATE = 0x20; -const int STATUS_ODD_EVEN = 0x04; -const int STATUS_FRAME_TIMER_OCCURRED = 0x01; +const int STATUS_INTERRUPT_PENDING = 0x80; +const int STATUS_VERTICAL_RETRACE = 0x40; +const int STATUS_LIGHT_PEN_UPDATE = 0x20; +const int STATUS_ODD_EVEN = 0x04; +const int STATUS_FRAME_TIMER_OCCURRED = 0x01; @@ -447,8 +447,8 @@ inline void crt9007_device::recompute_parameters() crt9007_device::crt9007_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, CRT9007, "SMC CRT9007", tag, owner, clock), - device_memory_interface(mconfig, *this), - m_space_config("videoram", ENDIANNESS_LITTLE, 8, 14, 0, NULL, *ADDRESS_MAP_NAME(crt9007)) + device_memory_interface(mconfig, *this), + m_space_config("videoram", ENDIANNESS_LITTLE, 8, 14, 0, NULL, *ADDRESS_MAP_NAME(crt9007)) { for (int i = 0; i < 0x3d; i++) m_reg[i] = 0; |