summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/wangpc.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/drivers/wangpc.cpp
parent333bff8de64dfaeb98134000412796b4fdef970b (diff)
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/mame/drivers/wangpc.cpp')
-rw-r--r--src/mame/drivers/wangpc.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/wangpc.cpp b/src/mame/drivers/wangpc.cpp
index 7038ab7befd..dac18d5e700 100644
--- a/src/mame/drivers/wangpc.cpp
+++ b/src/mame/drivers/wangpc.cpp
@@ -189,7 +189,7 @@ public:
image_init_result on_disk1_load(floppy_image_device *image);
void on_disk1_unload(floppy_image_device *image);
- UINT8 m_dma_page[4];
+ uint8_t m_dma_page[4];
int m_dack;
int m_timer2_irq;
@@ -450,7 +450,7 @@ READ8_MEMBER( wangpc_state::status_r )
*/
- UINT8 data = 0x03;
+ uint8_t data = 0x03;
// floppy interrupts
data |= m_fdc->get_irq() << 3;
@@ -564,7 +564,7 @@ READ8_MEMBER( wangpc_state::uart_r )
check_level2_interrupts();
- UINT8 data = m_uart->read(space, 0);
+ uint8_t data = m_uart->read(space, 0);
if (LOG) logerror("%s: UART read %02x\n", machine().describe_context(), data);
@@ -709,7 +709,7 @@ READ8_MEMBER( wangpc_state::option_id_r )
*/
- UINT8 data = 0;
+ uint8_t data = 0;
// FDC interrupt
data |= (m_fdc_dd0 || m_fdc_dd1 || (int) m_fdc->get_irq()) << 7;
@@ -941,7 +941,7 @@ READ8_MEMBER( wangpc_state::ppi_pa_r )
*/
- UINT8 data = 0x08 | 0x02 | 0x01;
+ uint8_t data = 0x08 | 0x02 | 0x01;
data |= m_dav << 2;
data |= m_centronics_busy << 4;
@@ -969,7 +969,7 @@ READ8_MEMBER( wangpc_state::ppi_pb_r )
*/
- UINT8 data = 0;
+ uint8_t data = 0;
// timer 2 interrupt
data |= m_timer2_irq;