fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mac: Fix SCSI ethernet packet size calculation on 0x80 types

+1
+1
src/arch/macplus/scsi.c
··· 654 654 break; 655 655 case MAC_SCSI_DEV_ETHERNET: 656 656 if (scsi->cmd[5] == 0x80) { 657 + cnt = (scsi->buf[0] << 8) | scsi->buf[1]; 657 658 mac_scsi_ethernet_write (dev, scsi->buf + 4, cnt); 658 659 } else { 659 660 mac_scsi_ethernet_write (dev, scsi->buf, cnt);