Added pcap_if.exe utility, updated net_ne2000.c and updated Makefile.mingw.

This commit is contained in:
waltje
2017-05-08 18:27:42 -04:00
parent 769a2939d5
commit 52cf57cf56
3 changed files with 79 additions and 4 deletions

View File

@@ -222,7 +222,14 @@ uint32_t ne2000_chipmem_read(ne2000_t *ne2000, uint32_t address, unsigned int io
void ne2000_page0_write(ne2000_t *ne2000, uint32_t offset, uint32_t value, unsigned io_len);
void ne2000_rx_frame(void *p, const void *buf, int io_len);
#ifdef WALTJE
#define ENABLE_NE2000_LOG
int ne2000_do_log = 1;
#else
int ne2000_do_log = 0;
#endif
void ne2000_log(const char *format, ...)