Removed unused declarations. (nw)

This commit is contained in:
Curt Coder 2014-03-18 13:31:58 +00:00
parent 59674b3fdf
commit 896b35441e
3 changed files with 0 additions and 6 deletions

View File

@ -13,10 +13,8 @@
class bfm_bd1_t : public device_t
{
public:
typedef delegate<void (bool state)> line_cb;
bfm_bd1_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// inline configuration helpers
static void static_set_value(device_t &device, int val);

View File

@ -13,10 +13,8 @@
class bfm_bda_t : public device_t
{
public:
typedef delegate<void (bool state)> line_cb;
bfm_bda_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// inline configuration helpers
static void static_set_value(device_t &device, int val);

View File

@ -23,8 +23,6 @@
class esqvfd_t : public device_t {
public:
typedef delegate<void (bool state)> line_cb;
esqvfd_t(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
DECLARE_WRITE8_MEMBER( write ) { write_char(data); }