diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/machine/s3c2440.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (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/devices/machine/s3c2440.cpp')
-rw-r--r-- | src/devices/machine/s3c2440.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/s3c2440.cpp b/src/devices/machine/s3c2440.cpp index 9ad23516c8d..f55686203ab 100644 --- a/src/devices/machine/s3c2440.cpp +++ b/src/devices/machine/s3c2440.cpp @@ -33,14 +33,14 @@ static inline void ATTR_PRINTF(3,4) verboselog( device_t &device, int n_level, c #include "machine/s3c24xx.hxx" #undef DEVICE_S3C2440 -UINT32 s3c2440_device::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect) +uint32_t s3c2440_device::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect) { return s3c24xx_video_update( screen, bitmap, cliprect); } const device_type S3C2440 = &device_creator<s3c2440_device>; -s3c2440_device::s3c2440_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +s3c2440_device::s3c2440_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, S3C2440, "Samsung S3C2440", tag, owner, clock, "s3c2440", __FILE__), m_palette(*this, finder_base::DUMMY_TAG), m_cpu(*this, ":maincpu"), @@ -148,7 +148,7 @@ void s3c2440_device::device_reset() } -void s3c2440_device::s3c2440_uart_fifo_w(int uart, UINT8 data) +void s3c2440_device::s3c2440_uart_fifo_w(int uart, uint8_t data) { s3c24xx_uart_fifo_w( uart, data); } @@ -158,12 +158,12 @@ void s3c2440_device::s3c2440_touch_screen(int state) s3c24xx_touch_screen( state); } -void s3c2440_device::s3c2440_request_irq(UINT32 int_type) +void s3c2440_device::s3c2440_request_irq(uint32_t int_type) { s3c24xx_request_irq( int_type); } -void s3c2440_device::s3c2440_request_eint(UINT32 number) +void s3c2440_device::s3c2440_request_eint(uint32_t number) { s3c24xx_request_eint( number); } |