summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/atarixga.h
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/machine/atarixga.h
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/machine/atarixga.h')
-rw-r--r--src/mame/machine/atarixga.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/machine/atarixga.h b/src/mame/machine/atarixga.h
index 8d6980a3ac3..933cf68fce7 100644
--- a/src/mame/machine/atarixga.h
+++ b/src/mame/machine/atarixga.h
@@ -17,7 +17,7 @@ class atari_xga_device : public device_t
{
public:
// construction/destruction
- atari_xga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ atari_xga_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_WRITE32_MEMBER(write);
DECLARE_READ32_MEMBER(read);
@@ -36,18 +36,18 @@ private:
FPGA_DECIPHER
};
- UINT16 powers2(UINT8 k, UINT16 x);
- UINT16 lfsr2(UINT16 x);
- UINT16 lfsr1(UINT16 x);
- UINT16 parity(UINT16 x);
- size_t popcount(UINT16 x);
- UINT16 ctz(UINT16 x);
- UINT16 decipher(UINT8 k, UINT16 c);
+ uint16_t powers2(uint8_t k, uint16_t x);
+ uint16_t lfsr2(uint16_t x);
+ uint16_t lfsr1(uint16_t x);
+ uint16_t parity(uint16_t x);
+ size_t popcount(uint16_t x);
+ uint16_t ctz(uint16_t x);
+ uint16_t decipher(uint8_t k, uint16_t c);
fpga_mode m_mode;
- UINT16 m_address; // last written address
- UINT16 m_ciphertext; // last written ciphertext
- std::unique_ptr<UINT16[]> m_ram; // CY7C185-45PC, only 16-Kbit used
+ uint16_t m_address; // last written address
+ uint16_t m_ciphertext; // last written ciphertext
+ std::unique_ptr<uint16_t[]> m_ram; // CY7C185-45PC, only 16-Kbit used
};