I made Ben Eater's 8-bit breadboard computer Emulator in C++
1–10 of 13 posts
Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#2Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#3Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#4Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#5Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#6Nice, I built a version in python with curses visualization of all states. It emulates all chips ob the hardware level (chips.py) and does not need any dependencies except py3.7: https://github.com/dangrie158/SAP-1/tree/master/Emulator
Just one question - couldn't immediately see a license file?
Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#7If you haven’t seen Ben Eater’s YouTube videos, they are top-notch. Even if you “know” the subject material (I thought I did...) they are very well done and worth watching.
Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#8Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#9Nice, I built a version in python with curses visualization of all states. It emulates all chips ob the hardware level (chips.py) and does not need any dependencies except py3.7: https://github.com/dangrie158/SAP-1/tree/master/Emulator
Re: I made Ben Eater's 8-bit breadboard computer Emulator in C++
#10Nice, I built a version in python with curses visualization of all states. It emulates all chips ob the hardware level (chips.py) and does not need any dependencies except py3.7: https://github.com/dangrie158/SAP-1/tree/master/Emulator
I didn't go as far as implementing the CPU, but watching his vids inspired me to write a circuit emulator, also in python:
https://github.com/giannitedesco/primula
I used it to emulate all the various flip flops, but I was thinking of building a computer in it.