Here is a couple of examples of how people ended up using my EPROM emulator:
Let’s start with Torsten, who decided to use the emulator to help with the development on his ZX81.
The next one on the list is John and his OMEGA MSX, here is what John shared with me: “Emulator working on my OMEGA MSX (Home built). I use the emulator to emulate cartridge eproms (small games up 64K)”
Leon, the “car hacker” uses the emulator to tune the map inside his car’s ECU.
Richard had a somewhat unusual but very interesting use case:
“Here is a picture of my HP-71b with the HP Curve Fitting 32k ROM loaded in the emulator. Fantastic. I can put my $10 UV Eprom eraser away for good”
Luke is using the emulator to develop firmware for the very popular Ben Eater’s BE6502 “computer”:
“Now I am able to write 6502 assembly in VSCode and use a Makefile to build and deploy the code directly to the BE6502. It even triggers the reset line after code is deployed”
Rick is using the emulator with his Atari 2600
Rene has been working on his 8080 computer and this is what he had to say about the emulator:
“I think, this is a great tool and will make my development much easier. My target: a modular DIY system, developed in Germany in the early 80s. See nkc-wiki.de”
Alexander, my good friend from Canada and his amazing 6802 wire wrapped computer:
Last but not least is Laurent, who is using the emulator to revive some old 8031 projects, Laurent mentions:
“your emulator opens a wealth of new possibilities, thank you so much!”
Note how in his emulator the probe connector is soldered on the bottom side of the PCB, turns out there are two versions of the emulator probe DIP28 connector, so he was forced to “mirror” the connections by installing the connector this way.
Hendrik-Jan is using the emulator with a 6502 based KIM-1 clone called PAL-1, he says:
“I’m very thoroughly impressed by everything about this device, both hardware and software...It’s really awesome to see how easy it is to work on some code, assemble it to a binary file and just upload it... just getting to know the emulator, lots to learn, and certainly many different projects to explore in the future (Ben Eater 6502, Commodore 64, RC2014, Microprofessor, SDK-85, and now soon also MGH80).
Greg built his emulator to develop firmware for a custom Z80 board he is working on, here is what he thinks about the emulator:
“The emulator is an amazing piece of kit that has saved me loads of time especially as a Z80 beginner. I would have had to program an EPROM and swap in and out of the board until my code was working”
Matt is using the emulator on some cool vintage computers, here is what he thinks:
“Love the EPROM-EMU-NG, have used it on a Syscom II Apple Clone with mixed up data bit order, and starting work on a Victor 9000″
Rod shared how he is using the emulator in radio hobby, programming his UHF transceiver, he wrote “I have to say it is a great piece of kit“.
A fellow Kris (aka “E-Synthesist”) shared progress of his firmware upgrade project for the Wersi Mk1 synthesizer where he has managed to implement the missing support of the MIDI DUMP function! Apparently, the synth was sold with documentation mentioning this function but it was never actually implemented. Kris developed new firmware that implements the function, here is what he mentioned about the emulator:
“During this project I think I have transferred about 100 interim and test versions of the firmware to the Wersi Mk1. So the project would definitely not have been possible without your EPROM Emulator!”
Mr E.M. from Germany shared his use case, he is working with 8048 CPUs and writing his own assembler. He fully integrated the emulator into his software:
William is using the emulator with the popular TEC-1F computer (Z80):
If you have an interesting use case for the emulator, send me pictures please and I’ll add them here.
As always, all source code and design documents are on my github page: EPROM-EMU-NG on GitHub
I recently posted an article that shows how people ended up using the emulator, check it out there: EPROM emulator NG use cases.
EPROM EMULATOR – An Introduction.
Well, before I explain what an EPROM Emulator is, I should first explain what an EPROM is. EPROM or Erasable Programmable Read-Only Memory is a type of programmable read-only memory that is used to store programs in “computers”. And when I say “computers” I refer to the 80s eight-bit machines (Commodore, Amiga ZX Spectrum, Tandy etc.), but also other computer like devices, controllers etc. that require program memory. Those EPROMS typically come as ICs in DIP28 package with a “window” in the middle used to “erase” the memory using UV light. See below:
Example of EPROM chip used in Commodore 64 “test” cartridge.
So, what is the issue and why would one need an EPROM emulator. By its nature, this type of memory is “read-only” and to change its content you need to erase it with UV light. Imagine you are developing software (well, firmware more likely) and you need to change the “program” in your EPROM memory. That means, remove the EPROM from its host computer, subject it to 20-30min of UV light exposure, program it with EPROM programmer, re-install in host computer. The entire process is extremely slow and has to be repeated every time you want to make even a small one-bit change! And yes, there are modern EPROM alternatives based on Flash technology, that could save you the 20-30 min erase time, but the rest of the process is still the same and still annoyingly slow if you’re writing code and trying to “debug” it.
This is where the EPROM emulator comes in handy, a device that can temporarily “replace” your EPROM chip, it is controlled by a computer and can be reprogrammed in seconds. Once you finish testing you can replace the emulator with an EPROM chip programmed with the final version of your code.
My “EPROM EMULATOR NG” – the “what”.
Those who follow my blog know that I already have a commercial EPROM emulator (see the ERMAX100 EPROM Emulator Revival post). I have been using it extensively recently and only just discovered a few really annoying “features” of that emulator. So I was motivated to create something similar to ERMAX 100, but based on a modern microcontroller platform, open-source, cross-platform control software, and free of annoying limitations of my old device (more on that later).
Let’s first have a look at the final result:
On one end the Emulator has an IDC34 connector J1, where you can plug a DIP28 “probe”, this probe replaces your EPROM device. The probe cable also has two “clips” carrying “reset” signals so you can restart the target platform once new code is uploaded to the emulator. On the “other end” we have a USB (mini in this case) socket allowing connection to the host computer that will control the emulator. The software that controls the emulator is written in Python (3.8) and so far, I have tested it on both Windows and Linux (raspbian) platforms, but should also be compatible with macOS, all basic features are already implemented, but since it’s all open source you can add any other feature you can think of.
The “brain” of the emulator is the Arduino Nano module, the sketch provided in the GitHub repository has most of the features I could think of already implemented. I’m not strong in “C” programming, in fact, the Arduino firmware was based on another project by fellow geek Natasza (check out her memory loader project). It was a good starting point for my implementation, but there is loads of scope for future “improvements”.
Let’s take a look at some examples of how I use the emulator.
Replacing EPROM inside a “test cartridge” for a Commodore 64 turns it into a “universal” cartridge that programs/utilities can be uploaded to. Note the raspberry pi I’m using to control the emulator over WiFi.Emulator used to develop a “Monitor” firmware for my Z80 project.Another Z80 “computer” development process eased with the use of EPROM Emulator. Note the Emulator can run “standalone” with no host computer attached.
My “EPROM EMULATOR NG” – the “how”.
Now we can look into some of the design details, let’s start with the schematic diagram.
Schematic diagram of the emulator.
There are a few building blocks of the device:
M1 – the Arduino Nano, the “brain” of our emulator – cheap and easy to get. Well-known and supported in Arduino IDE.
U7 and U8 are 32kB static RAM devices (SRAM), together with gate U1B they provide 64kB memory space that will be used to “pretend” or “emulate” the maximum supported 27C512 EPROM. Why am I not using a single SRAM of 64kB capacity you might ask? Those are hard to get today as 64kB SRAM was not very common. In fact, I had quite a few of the 62256 memory ICs spare, plus you can still find this type of memory on Digikey so I decided to stick to those. Why I didn’t use a Flash-based memory instead, well that is a longer story, but I really wanted to just “improve” an existing design of my commercial emulator, and initially didn’t care about the fact the SRAM memory will be cleared when power is gone.
J1 is the connector where we DIP28 “probe” is connected. Details on how to build one of those are also in the GitHub repository.
U9-U11 are 3 state 8-bit buffers, that allow us to “disconnect” the emulator from the target device/machine while we re-program the SRAM.
U4-U6 are serial to parallel “converters” (shift registers) that allow us to generate the Data (8 bit) and Address signals (16 bits) required to control the SRAM, all this using only 6 lines of the microcontroller. Important to note, they have a 3 state output, allowing us to “disable” them from the SRAM bus when the emulator is “running”. Note how the only pin that is unique to each of the shift registers is the data pin, all the other pins are connected in parallel (SRCLK, RCLK, OE etc). This is an unusual configuration, but it allows us to simplify the main routine that shifts the data into the chips, the main loop only needs to do 8 iterations to load all 24 bits (8 of data and 16 of address).
// Write single byte of data to SRAM
void writeMemoryLocation (unsigned short address, unsigned char data ) {
unsigned char addressHi = address >> 8 ;
unsigned char addressLo = address & 0xFF ;
unsigned char memData = data ;
// send data
for (int i = 0; i < 8 ; i++ ) {
digitalWrite( DATA, 0x80 & (memData << i) );
digitalWrite( ADLO, 0x80 & (addressLo << i));
digitalWrite( ADHI, 0x80 & (addressHi << i) );
digitalWrite( SCLK, HIGH );
digitalWrite( SCLK, LOW );
}
digitalWrite( DAT_LD, HIGH ); // latch data and address out
digitalWrite( DAT_LD, LOW );
// at this point we have data and address loaded into the shift registers
// now we can request a write to SRAM memory
digitalWrite( WE, LOW );
digitalWrite( WE, HIGH );
}
Gates U2A-U2D and U1A allow a to “selectively ignore” address lines A11-A15. Why? Imagine a situation, where you would like to emulate for example a 2764 EPROM, you want to make sure address lines A13, A14 and A15 are ignored in that case, regardless of how they are connected externally to the emulator. This was a major issue for my ERMAX emulator, I was at the “mercy” of how the target EPROM socket was wired in the design. Sometimes even if the device was using a small 27128 EPROM, A15 line would be at VCC (Logic high) so I had to re-map my program to match etc. This new design fixes the issue.
Optional block with the 64kB SPI EEPROM U3 and push-button SW1, was a “design evolution”. Initially, I didn’t care about what happens with the emulator when the power goes “off” – so you lose the “uploaded” image and you have to re-upload when the power comes back “on”. Not an issue when you are writing and debugging your code. But later I realized the EPROM Emulator could be used as a “virtual cartridge” for my Commodore 64, so “restoring” the state of SRAM on power “on” would be useful. I had a choice to totally re-design with Flash-based memory or a simple “hack” by adding the SPI EEPROM and since the SPI EEPROM is also very well supported in Arduino IDE plus I had the required “spare” pins on the microcontroller I decided to go the SPI route. PC control software allows you to decide if you want to upload to SRAM and save to SPI or just upload to SRAM. You also get a choice if you want to “automatically” restore the SRAM from SPI EEPROM on “power on”.
Diode D5 and fuse F1, is a minimal “power management”. The device can be powered by USB-generated 5V from the Arduino Nano or from the DIP28 target device. D5 prevents powering the target from the Arduino, the fuse limits the current drawn from the target if something goes wrong. The diode also protects the emulator from accidentally plugging the DIP28 probe the “wrong way around” into the target. There is some voltage drop on both of those elements. In certain situations, you may want to skip or bypass those. I’m keeping both of them in my emulator and haven’t yet seen issues – but at this point, my design is not widely used so I can’t comment further.
“EPROM EMULATOR NG” – I want one.
So you think it’s a useful device and you would like to own one? You will need to build the hardware first. For that, you should start by getting the PCB. All design files are in my GitHub repository and you can order the PCBs from one of the Chinese prototype houses, I used PCBway and if you don’t have an account yet, you can help me by signing up to PCBWay using my referral link:
(this will give me a few $ credit for my next project and you will also get a few $ towards your order in return). .
Once you sign up to PCBway, order the project PCB using this link:
And here is a link to DigiKey cart for PCB hw ver 2.2d, but due to chip shortage quite a few components are out of stock, and here is a cart for hw 1.9d, both include all components required to build the emulator and the probe. The cart total is around $60, you may consider sourcing the Arduino and the flat ribbon cable elsewhere. Other components in the cart are in quantities needed to build a single emulator – but remember you will get 5 PCBs from your order, so might be worth increasing the quantities to build 2 or more :). Also, since you are already paying for the delivery, increase the numbers on some of the common components (one can never have enough decoupling 100nF capacitors).
If you don’t want to build it yourself, I will have some of those devices listed on eBay, including parts “kits” and PCBs:
Once the hardware is built, the rest is just Arduino firmware and python control software, both can be found on my Github page.
As of October 2020, I’ve had reports from many people who successfully built and are now using the emulator. I recorded a quick introduction video that covers the basics of usage. Check out my YouTube channel:
Eprom Emulator DYI – Introduction and getting started on Window(s) 10 π
For those planning to build or buy one of my ready devices, I’ve set up a group on groups.io where we can collaborate, feel free to join: https://groups.io/g/eprom-emu-ng
Last note: most of the pictures you see in the above description is v1.0 of the PCB. I built the first 5 prototypes and later discovered an issue with the PCB layout, one of the shift registers (U11) was getting onto a CMOS latch-up state, even though I had a few bypass caps around the PCB, I was still occasionally getting the issues. I fixed my prototypes with a few “bodge” cables.
I improved the PCB design, re-routed some of the power connections and repositioned some of the components, and released as v1.4. At this point the project evolved even further, so what you see on GitHub is PCB v2.1! In the most recent change, I moved from using two smaller SRAM memory chips to using a single larger one. Firmware and software stay the same for both versions.
If you found this helpful and you like the work I do, why not buy me a coffee, thanks! π
I’ve been trying to get back into some of my “retro computer programming”. By the way, “computer” is a bit of an overstatement. As my first “computer” was a very special device, that looked like a calculator and only had an 8 digit 7 segment VFD display – it was called CA80 and was an educational “kit” computer from Poland. I’ll write more about it in the future, for now, I’m just liking to hackaday.io article describing it. One of the challenges of “programming” was that there was no editor on the “computer” and you had to program and compile on paper and once done you had to “punch it in” into the computer by hand. This is not very effective in 2020, so I started looking around for ways to “send” the code directly to the memory of my little computer. And here comes another device from the “days past” – and EPROM Emulator ERMAX100. It was released by a Polish company ASTAR ABR around 1995. By that time I was 15 and in the middle of working on my final year project based on 8051, I was desperate to get my hands on the ERMAX100 so that I can compile the code on my PC (yep at that time I was finally using a proper computer) and send over a serial connection to the emulator that would “pretend” the EPROM memory of my target system. I managed to somehow convince my parents and ended up buying it. I successfully used it for a few years, until devices with builtin flash memory, like the Atmel 89C2051, showed up on the market. Worth noting ERMAX100 can emulate all the common sizes of EPROMs from a 2kB 2716 all the way to a 64kB 27512.
My ERMAX100.
This is my example of the device. At one end the device has just a serial port (RS232) and optional 5V power connector, on the other end the plug for a cable that ends with 28 pin emulator “probe”. There are also two “RESET” hooks, that allows you to reset the target system after the code upload. I’ve added an extra “Reset” button, to be able to reset the emulator itself, as it sometimes “got stuck”.
Here is the emulator “in action”, plugged into my CA80 “microcomputer”.
The “90s” hardware in the 2020 problem.
Once I got my emulator plugged into the “target” there was a very important issue I was facing. Who still has a serial RS232 compatible port on a computer? I didn’t have one, and I since I wanted the flexibility of being able to plug the emulator to any of my modern machines I came up with a solution: “convert” the device to use USB, to be more precise: replace the RS232 connector on the device with chap USB TTL serial cable.
So I’ve opened the emulator and discovered that it only uses the receive line of the serial port, and the hardware implementation is based on a single transistor. I quickly tested the theory, bypassing the RS232 connector and plugging the TTL-to-USB cable directly to the device:
Since that idea worked well, I made it a bit more permanent, first I removed the RS232 connector and the redundant power socket (we can now provide power via USB):
To re-use the old panel, I filled the holes with epoxy glue and used some black tape to give it a fresh surface. I think the result is acceptable.
I’ve attached the 5V, TX and GND lines from the USB-to-TTL cable after removing the transistor that acted as RS232 to TTL converter in the original solution, and secured the cable with a cable tie using two of the holes left after removing the power and RS232 connectors.
The end result is my ERMAX100 converted into USB π
The “90s” software in the 2020 problem.
The software that came with it was from the 90s and “it showed”. It was DOS “only” and didn’t run on my Windows 10 machine. Besides that, I do most of my coding those days from a Linux machine (Raspberry pi 4 to be exact).
So I decided to try and “figure out” the protocol and re-implement it in something more platform-agnostic like Python script.
I had to “dig out” one of my older Windows 7 based computers and used it to send a few examples of data using the original software. I then “sniffed” the data on another computer.
The first byte is a “synchronization” byte of 0x55H, followed by a “type of EPROM” byte of 0x01H for 2716, 0x02H for 2732 etc. The 3rd byte seems to always be 0x01H. Following those 3 bytes is the actual binary file that is the “emulated” data. The last one or two bytes were some kind of CRC check or similar. It was strange as the lastΒ “CRC Byte” was not changing even if I was sending different data (see the example above where my first byte is 0x90H or 0x91H but the CRC stays the same at 0xA2H). Also, the CRC byte and something else was overwitting the last 2-3 bytes of my binary file (again in the example above you can see binary data finishes with 0403, but the original data that I’m sending ends with 04030201). Using different data file I was getting different “CRC” bytes, sometimes even for the same type of file sent multiple times, I was seeing different CRC byte. I the end I assumed that last byte “doesn’t” matter or is not even implemented on the ERMAX100. To test my theory I wrote a simple python script:
You will need Python 3.8 and “pyserial” library (“pip install pyserial”). To my surprise, it worked! Even better than the original program, as it wasn’t overwriting the last bytes of my payload with CRC.
Now that I confirmed the “protocol” is correct, I wrote a full script that replaces the original DOS software with a simple Python-based script. I tested it so far on a raspberry pi and a Windows 10 machine both work well. The source is on my GitHub page.
I don’t think there are many people using the ERMAX100 but if you found this article and ended up using the script let me know.
I’m leaving you with some pictures of my ERMAX100 “in action”, emulating the 2764 EPROM of my CA80 microcomputer, programmed from Raspberry Pi 4.