1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-04-18 00:47:50 +00:00

SCP: Patches to allow IMP support to work.

This commit is contained in:
Richard Cornwell
2019-01-05 14:24:15 -05:00
parent 3c16f8b3f5
commit 44a18feb0b
3 changed files with 9 additions and 6 deletions

View File

@@ -355,6 +355,7 @@ t_stat eth_set_async (ETH_DEV* dev, int latency); /* set read behavior to
t_stat eth_clr_async (ETH_DEV* dev); /* set read behavior to be not async */
t_stat eth_set_throttle (ETH_DEV* dev, uint32 time, uint32 burst, uint32 delay); /* set transmit throttle parameters */
uint32 eth_crc32(uint32 crc, const void* vbuf, size_t len); /* Compute Ethernet Autodin II CRC for buffer */
int eth_add_packet_crc32(uint8 *msg, int len);
void eth_packet_trace (ETH_DEV* dev, const uint8 *msg, int len, const char* txt); /* trace ethernet packet header+crc */
void eth_packet_trace_ex (ETH_DEV* dev, const uint8 *msg, int len, const char* txt, int detail, uint32 reason); /* trace ethernet packet */