Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hkzlab/isa_8bitnetwork_8019
8bit ISA NE2000-compatible network card based on the RTL8019AS chip
https://github.com/hkzlab/isa_8bitnetwork_8019
hardware homebrew isa msdos ne2000 network retrocomputing
Last synced: 5 days ago
JSON representation
8bit ISA NE2000-compatible network card based on the RTL8019AS chip
- Host: GitHub
- URL: https://github.com/hkzlab/isa_8bitnetwork_8019
- Owner: hkzlab
- Created: 2021-05-12T08:41:43.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-07T16:32:11.000Z (over 2 years ago)
- Last Synced: 2023-03-11T21:47:36.331Z (almost 2 years ago)
- Topics: hardware, homebrew, isa, msdos, ne2000, network, retrocomputing
- Language: Assembly
- Homepage:
- Size: 6.75 MB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RTL8019AS ISA 8bit Network Card
## Introduction
This is an 8bit reimplementation and repackaging of [Manawyrm's ISA8019](https://github.com/Manawyrm/ISA8019), a NE2000-compatible card for the ISA bus.
Differences from the original version include:
- 8bit only design (significantly more compact than the 16bit version)
- Most of the components are now THT (except EEPROM, Network IC and transformer)![Rev. 2.2 PCB](pics/ISA8019.png)
### Disclaimer
I take NO responsibility for what happens if you decide to build and use this card. Your computer might crash, catch fire or be destroyed in other nasty ways.
Also, as this card is mostly based on the work of others, You're encourauged to take what you deem fit from this, and use it in your projects!Additionally, do **NOT CONTACT Manawyrm FOR SUPPORT**, while this board is derived from their work, it is not their product, please do not waste their time.
## Configuration
The board can work in 3 modes:
- Jumper mode (JP jumper set)
This mode allows for manual configuration of any parameters (I/O address, IRQ, BROM address & size, etc.) manually via jumpers. Refer to the back of the PCB for details.
- EEPROM mode (also called "Jumperless", no jumpers set)
In this mode, all parameters can be configured via the RSET8019.EXE dos utility and will be stored in the 9364 I²C EEPROM.
- PnP mode
For modern computers and operating systems like Windows 9x or Linux, this mode is ideal. Resource management will be done by the BIOS or OS.I use this 8bit variant in **Jumper mode** (hard to find an 8bit machine with PnP support...).
### Programming utilities
- [RSET8019.EXE](software/Programming%20utilities/Rset8019.exe) for DOS, can set EEPROM parameters, also includes diagnostic functions
- [pg8019](software/Programming%20utilities/pg8019) for DOS, can initialize EEPROM, set MAC address, vendor/product IDs### Drivers
- [MS-DOS packet drivers, modded for 8-bit XT machines](software/Drivers/Crynwr%20packet%20driver%20-%20modified%20for%208bit%20operation)
### UMB Support
Revisions 2.4 onward support SRAM chips (e.g. AS6C4008) on the boot ROM slot by correctly bridging J11.
```text
J11 setting, ISA edge connector looking DOWN
EPROM
| .
| |
. |
SRAM
. |
| |
| .
```This is not yet tested by me, but is reported working by modifying a previous revision. Reference this [issue](https://github.com/hkzlab/ISA_8bitNetwork_8019/issues/2).
If you wish to use a SRAM chip for UMB support in previous revisions, cut the traces that go to pin 29 and 31 of the boot ROM, and invert them (connect the trace that went to 29 to pin 31, and vice-versa).
The RTL2UMB software can be found in [this](https://forum.vcfed.org/index.php?threads/pc-dos-3-2-for-5150.78476/) thread.
## Bill of Materials
You can use [LCSC](https://lcsc.com) to source most of the ICs.
- U1: RTL8019AS
- U2: AT93C46DN
- T1: 13F-39MNL
- J2: C133529 CKMTW
- Y1: 20Mhz HC49 crystal
- C9, C9: 20pF ceramic capacitor
- C1,C3-7,C12,C15: 100nF ceramic capacitors
- C2, C16: 10uF/25v electrolytic or ceramic capacitors
- C10-14: 1nF ceramic capacitors
- R4,R5: 1k resistors
- R6-22: 10k resistors
- R3: 200ohm resistor
- R2: 1M resistor
- FB1: Ferrite bead
- ISA bracket: Keystone 9202-1, plus screws. This bracket is made for ISA modems, the hole will be slightly wider than an RJ45 socket.## Known Issues
- Revision 2.3 has only minor changes, but has not yet been tested by me. Reports are welcome.
- I received a report of this board not allowing Sergey's Micro8088 to boot **unless the IRQ6 line is cut** on the network card. I have not been to reproduce this (maybe because I'm using a terminated backplane?), as the builds I completed are working fine on my Micro8088 cards, but be aware in case you incur in the same issue. **Revision 2.3 keeps IRQ lines 6 and 7, but makes them jumperable and by default disconnected**, so if you have that revision, this should no longer be an issue.![Rev. 2.2 IRQ6 Trace cut](pics/ISA8019_rev22_irq6cut.png)
The picture above shows where to cut to isolate IRQ6 in case you suffer the described issue. The trace is located on the backside of the PCB.
## Credits
- Thanks to [Manawyrm](https://github.com/Manawyrm/ISA8019) for the original project