Show HN: Arduino 6502 Controller
github.com
Show HN: Arduino 6502 Controller
1–10 of 11 posts
Re: Show HN: Arduino 6502 Controller
#2Re: Show HN: Arduino 6502 Controller
#3Re: Show HN: Arduino 6502 Controller
#4Re: Show HN: Arduino 6502 Controller
#5Would OP like to elaborate on what exactly this does? I'm guessing the 6502 otherwise does not have good debugging/development support?
Re: Show HN: Arduino 6502 Controller
#6Would OP like to elaborate on what exactly this does? I'm guessing the 6502 otherwise does not have good debugging/development support?
??? It allows you to program a 6502 chip and simulate peripherals.
That being said I love the 6502 and have a few laying around and will play with this on Monday.
Re: Show HN: Arduino 6502 Controller
#7Earlier quoted context omitted.
??? It allows you to program a 6502 chip and simulate peripherals.
Back in the day you couldn’t even single step a 6502. IIRC the apple 1 manual had a super smart Woz way to nop the 6502 in between steps to keep it alive. That being said I love the 6502 and have a few laying around and will play with this on Monday.
The thing we were building for my internship used a very low clock speed to conserve battery power, since CMOS draws current only during transitions.
Re: Show HN: Arduino 6502 Controller
#8Earlier quoted context omitted.
Back in the day you couldn’t even single step a 6502. IIRC the apple 1 manual had a super smart Woz way to nop the 6502 in between steps to keep it alive. That being said I love the 6502 and have a few laying around and will play with this on Monday.
I worked on some 6502 based stuff in the early 80s, thanks to a college internship. As I learned from my mentor, the original 6502 was NMOS and had some dynamic registers, i.e., their contents needed to be refreshed, thus limiting how slow the machine could run. But the 65C02 was CMOS with all static registers and could be slowed down to zero through appropriate control of the clock. The thing we were building for my…
Re: Show HN: Arduino 6502 Controller
#9That "note" should be more of a "warning". I can't think of any debugger, "modern" or otherwise, that doesn't show the next instruction to be executed. Expect this to cause a lot of confusion.
Re: Show HN: Arduino 6502 Controller
#10Simulating something that looks like a serial port (transmit/receive/status registers) would seem more natural, peripheral-wise.