summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/alto2/a2ether.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/alto2/a2ether.h')
-rw-r--r--src/devices/cpu/alto2/a2ether.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/devices/cpu/alto2/a2ether.h b/src/devices/cpu/alto2/a2ether.h
index 484bd187f8c..fe302fd0eef 100644
--- a/src/devices/cpu/alto2/a2ether.h
+++ b/src/devices/cpu/alto2/a2ether.h
@@ -37,9 +37,9 @@ enum {
//!< f2 (1111): undefined
};
-UINT8* m_ether_a41; //!< BPROM; P3601-1; 256x4; enet.a41 "PE1"
-UINT8* m_ether_a42; //!< BPROM; P3601-1; 256x4; enet.a42 "PE2"
-UINT8* m_ether_a49; //!< BPROM; P3601-1; 265x4 enet.a49 "AFIFO"
+uint8_t* m_ether_a41; //!< BPROM; P3601-1; 256x4; enet.a41 "PE1"
+uint8_t* m_ether_a42; //!< BPROM; P3601-1; 256x4; enet.a42 "PE2"
+uint8_t* m_ether_a49; //!< BPROM; P3601-1; 265x4 enet.a49 "AFIFO"
enum {
ether_a49_BE = (1 << 0), //!< buffer empty
ether_a49_BNE = (1 << 1), //!< buffer next empty
@@ -48,17 +48,17 @@ enum {
};
struct {
- UINT32 serin; //!< serial input shift registers 74164 #37 and #33
- UINT16 fifo[ALTO2_ETHER_FIFO_SIZE]; //!< FIFO buffer
- UINT16 fifo_rd; //!< FIFO input pointer
- UINT16 fifo_wr; //!< FIFO output pointer
- UINT16 status; //!< status word
- UINT16 rx_crc; //!< receiver CRC
- UINT16 tx_crc; //!< transmitter CRC
- UINT32 rx_count; //!< received words count
- UINT32 tx_count; //!< transmitted words count
- std::unique_ptr<UINT16[]> rx_packet; //!< buffer to collect received words
- std::unique_ptr<UINT16[]> tx_packet; //!< buffer to collect transmitted words
+ uint32_t serin; //!< serial input shift registers 74164 #37 and #33
+ uint16_t fifo[ALTO2_ETHER_FIFO_SIZE]; //!< FIFO buffer
+ uint16_t fifo_rd; //!< FIFO input pointer
+ uint16_t fifo_wr; //!< FIFO output pointer
+ uint16_t status; //!< status word
+ uint16_t rx_crc; //!< receiver CRC
+ uint16_t tx_crc; //!< transmitter CRC
+ uint32_t rx_count; //!< received words count
+ uint32_t tx_count; //!< transmitted words count
+ std::unique_ptr<uint16_t[]> rx_packet; //!< buffer to collect received words
+ std::unique_ptr<uint16_t[]> tx_packet; //!< buffer to collect transmitted words
emu_timer* rx_timer; //!< receiver timer
emu_timer* tx_timer; //!< transmitter timer
jkff_t ff_10a; //!< JK flip-flop 10a IBUSY (Sheet 13)