tms1024, tms6100: move leftover comment from when macros were removed (nw)

This commit is contained in:
hap 2018-11-27 16:00:32 +01:00 committed by Vas Crabb
parent f36e9e33fe
commit bb2e2d9a85
2 changed files with 4 additions and 16 deletions

View File

@ -11,13 +11,6 @@
#pragma once
// ports setup
// 4-bit ports (3210 = DCBA)
// valid ports: 4-7 for TMS1024, 1-7 for TMS1025
// pinout reference
/*
@ -51,6 +44,8 @@
class tms1024_device : public device_t
{
public:
// 4-bit ports (3210 = DCBA)
// valid ports: 4-7 for TMS1024, 1-7 for TMS1025
enum
{
PORT1 = 0,

View File

@ -11,15 +11,6 @@
#pragma once
//**************************************************************************
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
// 4-bit mode (mask option)
// note: in 4-bit mode, use data_r, otherwise use data_line_r
// pinout reference
/*
@ -93,6 +84,8 @@ class tms6100_device : public device_t
public:
tms6100_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
// 4-bit mode (mask option)
// note: in 4-bit mode, use data_r, otherwise use data_line_r
void enable_4bit_mode(bool mode) { m_4bit_mode = mode; }
DECLARE_WRITE_LINE_MEMBER(m0_w);