summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99_peb/evpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99_peb/evpc.h')
-rw-r--r--src/devices/bus/ti99_peb/evpc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/ti99_peb/evpc.h b/src/devices/bus/ti99_peb/evpc.h
index 0556c17bf64..32ecaa5a7d6 100644
--- a/src/devices/bus/ti99_peb/evpc.h
+++ b/src/devices/bus/ti99_peb/evpc.h
@@ -25,17 +25,17 @@ extern const device_type TI99_EVPC;
struct evpc_palette
{
- UINT8 read_index, write_index, mask;
+ uint8_t read_index, write_index, mask;
int read;
int state;
- struct { UINT8 red, green, blue; } color[0x100];
+ struct { uint8_t red, green, blue; } color[0x100];
//int dirty;
};
class snug_enhanced_video_device : public ti_expansion_card_device, public device_nvram_interface
{
public:
- snug_enhanced_video_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ snug_enhanced_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_READ8Z_MEMBER(readz) override;
DECLARE_WRITE8_MEMBER(write) override;
DECLARE_SETADDRESS_DBIN_MEMBER(setaddress_dbin) override;
@@ -69,9 +69,9 @@ private:
bool m_sound_accessed;
bool m_video_accessed;
- UINT8* m_dsrrom;
+ uint8_t* m_dsrrom;
- std::unique_ptr<UINT8[]> m_novram; // NOVRAM area
+ std::unique_ptr<uint8_t[]> m_novram; // NOVRAM area
evpc_palette m_palette;
required_device<v9938_device> m_video;