mirror of
https://github.com/holub/mame
synced 2025-05-04 21:43:05 +03:00
tms1024, tms6100: move leftover comment from when macros were removed (nw)
This commit is contained in:
parent
f36e9e33fe
commit
bb2e2d9a85
@ -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,
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user