Textual changes.

This commit is contained in:
waltje
2017-06-02 14:11:53 -04:00
parent 383ec2c845
commit 142eac1368
2 changed files with 8 additions and 13 deletions

View File

@@ -8,10 +8,9 @@
* *
* Implementation of an NE2000/RTL8029AS network controller. * Implementation of an NE2000/RTL8029AS network controller.
* *
* NOTE: Its still a mess, but we're getting there. The file will * NOTE: The file will also implement an NE1000 for 8-bit ISA systems.
* also implement an NE1000 for 8-bit ISA systems.
* *
* Version: @(#)net_ne2000.c 1.0.8 2017/06/01 * Version: @(#)net_ne2000.c 1.0.9 2017/06/02
* *
* Authors: Fred N. van Kempen, <decwiz@yahoo.com> * Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Peter Grehan, grehan@iprg.nokia.com> * Peter Grehan, grehan@iprg.nokia.com>

View File

@@ -4,10 +4,13 @@
* PC systems and compatibles from 1981 through fairly recent * PC systems and compatibles from 1981 through fairly recent
* system designs based on the PCI bus. * system designs based on the PCI bus.
* *
* Emulation of BusLogic BT-542B ISA and BT-958D PCI SCSI * Emulation of BusLogic ISA and PCI SCSI controllers. Boards
* controllers. * supported:
* *
* Version: @(#)scsi_buslogic.c 1.0.0 2017/05/30 * 0 - BT-542B ISA;
* 1 - BT-958 PCI (but BT-542B ISA on non-PCI machines)
*
* Version: @(#)scsi_buslogic.c 1.0.2 2017/06/02
* *
* Author: TheCollector1995, <mariogplayer@gmail.com> * Author: TheCollector1995, <mariogplayer@gmail.com>
* Miran Grca, <mgrca8@gmail.com> * Miran Grca, <mgrca8@gmail.com>
@@ -16,13 +19,6 @@
* Copyright 2016-2017 Miran Grca. * Copyright 2016-2017 Miran Grca.
* Copyright 2017-2017 Fred N. van Kempen. * Copyright 2017-2017 Fred N. van Kempen.
*/ */
/*Buslogic SCSI emulation*/
/* Emulated SCSI controllers:
0 - BusLogic BT-542B ISA;
1 - BusLogic BT-958 PCI (but BT-542B ISA on non-PCI machines). */
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>