diff options
author | 2020-09-27 11:00:56 +1000 | |
---|---|---|
committer | 2020-09-27 11:00:56 +1000 | |
commit | 6e807013c570ed6b5ff7f950a3b131914b9718f3 (patch) | |
tree | 86eb67544d14d9ee32a18467d7ba859f19f36a51 /src/devices/machine/cs8900a.h | |
parent | 7dad0f4f58e2e0e59b72f3df672ecfe2c8168545 (diff) |
Disable SOUND_DEBUG for non-debug builds, and srcclean
Diffstat (limited to 'src/devices/machine/cs8900a.h')
-rw-r--r-- | src/devices/machine/cs8900a.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/devices/machine/cs8900a.h b/src/devices/machine/cs8900a.h index 69931c583e5..74e4c8b20b3 100644 --- a/src/devices/machine/cs8900a.h +++ b/src/devices/machine/cs8900a.h @@ -3,11 +3,11 @@ /************************************************************************* - CS8900A ethernet controller implementation + CS8900A ethernet controller implementation - by Rhett Aultman <roadriverrail@gmail.com> - ported to MAME from VICE Project (https://sourceforge.net/p/vice-emu/) - VICE CS8900 code by Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de> + by Rhett Aultman <roadriverrail@gmail.com> + ported to MAME from VICE Project (https://sourceforge.net/p/vice-emu/) + VICE CS8900 code by Spiro Trikaliotis <Spiro.Trikaliotis@gmx.de> **************************************************************************/ @@ -19,7 +19,7 @@ #include <queue> /*************************************************************************** - TYPE DEFINITIONS + TYPE DEFINITIONS ***************************************************************************/ class cs8900a_device : public device_t, public device_network_interface { @@ -57,13 +57,13 @@ private: u16 cs8900_packetpage_ptr; /* reveiver setup */ - u16 cs8900_recv_control; /* copy of CC_RXCTL (contains all bits below) */ - bool cs8900_recv_broadcast; /* broadcast */ - bool cs8900_recv_mac; /* individual address (IA) */ - bool cs8900_recv_multicast; /* multicast if address passes the hash filter */ - bool cs8900_recv_correct; /* accept correct frames */ - bool cs8900_recv_promiscuous; /* promiscuous mode */ - bool cs8900_recv_hashfilter; /* accept if IA passes the hash filter */ + u16 cs8900_recv_control; /* copy of CC_RXCTL (contains all bits below) */ + bool cs8900_recv_broadcast; /* broadcast */ + bool cs8900_recv_mac; /* individual address (IA) */ + bool cs8900_recv_multicast; /* multicast if address passes the hash filter */ + bool cs8900_recv_correct; /* accept correct frames */ + bool cs8900_recv_promiscuous; /* promiscuous mode */ + bool cs8900_recv_hashfilter; /* accept if IA passes the hash filter */ u16 tx_buffer; u16 rx_buffer; @@ -90,7 +90,7 @@ private: void cs8900_set_transmitter(int enabled); bool cs8900_should_accept(unsigned char *buffer, int length, bool *phashed, int *phash_index, bool *pcorrect_mac, bool *pbroadcast, bool *pmulticast); u16 cs8900_receive(void); - void cs8900_write_tx_buffer(u8 value, int odd_address); + void cs8900_write_tx_buffer(u8 value, int odd_address); u8 cs8900_read_rx_buffer(int odd_address); void cs8900_sideeffects_write_pp(u16 ppaddress, int odd_address); void cs8900_sideeffects_read_pp(u16 ppaddress, int odd_address); |