mame/src/mess/machine/74145.c
2012-08-21 10:41:19 +00:00

179 lines
5.2 KiB
C

/*****************************************************************************
*
* machine/74145.c
*
* BCD-to-Decimal decoder
*
* __ __
* 0-| v |-VCC
* 1-| |-A
* 2-| |-B
* 3-| |-C
* 4-| |-D
* 5-| |-9
* 6-| |-8
* GND-|_____|-7
*
*
* Truth table
* _______________________________
* | Inputs | Outputs |
* | D C B A | 0 1 2 3 4 5 6 7 8 9 |
* |-------------------------------|
* | L L L L | L H H H H H H H H H |
* | L L L H | H L H H H H H H H H |
* | L L H L | H H L H H H H H H H |
* | L L H H | H H H L H H H H H H |
* | L H L L | H H H H L H H H H H |
* |-------------------------------|
* | L H L H | H H H H H L H H H H |
* | L H H L | H H H H H H L H H H |
* | L H H H | H H H H H H H L H H |
* | H L L L | H H H H H H H H L H |
* | H L L H | H H H H H H H H H L |
* |-------------------------------|
* | H L H L | H H H H H H H H H H |
* | H L H H | H H H H H H H H H H |
* | H H L L | H H H H H H H H H H |
* | H H L H | H H H H H H H H H H |
* | H H H L | H H H H H H H H H H |
* | H H H H | H H H H H H H H H H |
* -------------------------------
*
****************************************************************************/
#include "emu.h"
#include "74145.h"
#include "coreutil.h"
/*****************************************************************************
GLOBAL VARIABLES
*****************************************************************************/
const ttl74145_interface default_ttl74145 =
{
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL,
DEVCB_NULL
};
const device_type TTL74145 = &device_creator<ttl74145_device>;
/***************************************************************************
DEVICE INTERFACE
***************************************************************************/
//-------------------------------------------------
// ttl74145_device - constructor
//-------------------------------------------------
ttl74145_device::ttl74145_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, TTL74145, "TTL74145", tag, owner, clock)
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void ttl74145_device::device_start()
{
/* resolve callbacks */
m_output_line_0_func.resolve(m_output_line_0_cb, *this);
m_output_line_1_func.resolve(m_output_line_1_cb, *this);
m_output_line_2_func.resolve(m_output_line_2_cb, *this);
m_output_line_3_func.resolve(m_output_line_3_cb, *this);
m_output_line_4_func.resolve(m_output_line_4_cb, *this);
m_output_line_5_func.resolve(m_output_line_5_cb, *this);
m_output_line_6_func.resolve(m_output_line_6_cb, *this);
m_output_line_7_func.resolve(m_output_line_7_cb, *this);
m_output_line_8_func.resolve(m_output_line_8_cb, *this);
m_output_line_9_func.resolve(m_output_line_9_cb, *this);
// register for state saving
save_item(NAME(m_number));
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void ttl74145_device::device_config_complete()
{
// inherit a copy of the static data
const ttl74145_interface *intf = reinterpret_cast<const ttl74145_interface *>(static_config());
if (intf != NULL)
*static_cast<ttl74145_interface *>(this) = *intf;
// or initialize to defaults if none provided
else
{
memset(&m_output_line_0_cb, 0, sizeof(m_output_line_0_cb));
memset(&m_output_line_1_cb, 0, sizeof(m_output_line_1_cb));
memset(&m_output_line_2_cb, 0, sizeof(m_output_line_2_cb));
memset(&m_output_line_3_cb, 0, sizeof(m_output_line_3_cb));
memset(&m_output_line_4_cb, 0, sizeof(m_output_line_4_cb));
memset(&m_output_line_5_cb, 0, sizeof(m_output_line_5_cb));
memset(&m_output_line_6_cb, 0, sizeof(m_output_line_6_cb));
memset(&m_output_line_7_cb, 0, sizeof(m_output_line_7_cb));
memset(&m_output_line_8_cb, 0, sizeof(m_output_line_8_cb));
memset(&m_output_line_9_cb, 0, sizeof(m_output_line_9_cb));
}
}
//-------------------------------------------------
// device_start - device-specific reset
//-------------------------------------------------
void ttl74145_device::device_reset()
{
m_number = 0;
}
/***************************************************************************
IMPLEMENTATION
***************************************************************************/
void ttl74145_device::write(UINT8 data)
{
/* decode number */
UINT16 new_number = bcd_2_dec(data & 0x0f);
/* call output callbacks if the number changed */
if (new_number != m_number)
{
m_output_line_0_func(new_number == 0);
m_output_line_1_func(new_number == 1);
m_output_line_2_func(new_number == 2);
m_output_line_3_func(new_number == 3);
m_output_line_4_func(new_number == 4);
m_output_line_5_func(new_number == 5);
m_output_line_6_func(new_number == 6);
m_output_line_7_func(new_number == 7);
m_output_line_8_func(new_number == 8);
m_output_line_9_func(new_number == 9);
}
/* update state */
m_number = new_number;
}
UINT16 ttl74145_device::read()
{
return (1 << m_number) & 0x3ff;
}