Which UART are you using?
As I was working from Garth's primer I used the MAX3100 SPI UART he recommends. It's flexible, has a simple interface and comes in a breadboard-friendly package for prototyping. I had a lot of fun writing the routines to big-bang a duplex'ed SPI interface using the 65C22 ...
Search found 6 matches
- Tue Jul 11, 2017 11:08 pm
- Forum: Newbies
- Topic: PINKY-8, the me-too 65C02 SBC that doesn't quite work
- Replies: 14
- Views: 4988
- Fri Jul 07, 2017 2:33 am
- Forum: Newbies
- Topic: PINKY-8, the me-too 65C02 SBC that doesn't quite work
- Replies: 14
- Views: 4988
Re: PINKY-8, the me-too 65C02 SBC that doesn't quite work
Thanks for the tremendous support, guys. I'll go into the gory details below but tl;dr is that your suggestions addressed the issue.
You have BE , NMI(B) , RDY and SO(B) all tied to the same pullup resistor. RDY is a bi-directional pin and should be on its own pullup. If the 65C02 executes a WAI ...
You have BE , NMI(B) , RDY and SO(B) all tied to the same pullup resistor. RDY is a bi-directional pin and should be on its own pullup. If the 65C02 executes a WAI ...
- Mon Jul 03, 2017 4:17 am
- Forum: Newbies
- Topic: PINKY-8, the me-too 65C02 SBC that doesn't quite work
- Replies: 14
- Views: 4988
Re: PINKY-8, the me-too 65C02 SBC that doesn't quite work
Welcome, and congratulations on the success so far. It sounds like you have a good understanding of how to troubleshoot. I'm glad my 6502 primer was a help.
Thanks! It's nice to be finally be conversing here after years of lurking.
As you can see, there's no way the SRAM's chip select can go true ...
Thanks! It's nice to be finally be conversing here after years of lurking.
As you can see, there's no way the SRAM's chip select can go true ...
- Mon Jul 03, 2017 3:39 am
- Forum: Newbies
- Topic: PINKY-8, the me-too 65C02 SBC that doesn't quite work
- Replies: 14
- Views: 4988
Re: PINKY-8, the me-too 65C02 SBC that doesn't quite work
Thanks, Doc, I'll try to tone down the dad humor :oops:
Can you elaborate on what "looked more closely" means? Sounds like you're examining the stack upon entry to the ISR. The last items pushed to stack will be the address of a BRK opcode plus two, and the P register. So, you're examining the ...
Can you elaborate on what "looked more closely" means? Sounds like you're examining the stack upon entry to the ISR. The last items pushed to stack will be the address of a BRK opcode plus two, and the P register. So, you're examining the ...
- Mon Jul 03, 2017 3:16 am
- Forum: Newbies
- Topic: PINKY-8, the me-too 65C02 SBC that doesn't quite work
- Replies: 14
- Views: 4988
Re: PINKY-8, the me-too 65C02 SBC that doesn't quite work
Gladly! Nice to make your acquaintance, BDD. There's now a JPEG of the schematic in the repo here: https://github.com/contrarian-computing ... -8.sch.jpg
- Mon Jul 03, 2017 2:01 am
- Forum: Newbies
- Topic: PINKY-8, the me-too 65C02 SBC that doesn't quite work
- Replies: 14
- Views: 4988
PINKY-8, the me-too 65C02 SBC that doesn't quite work
Greetings fellow 6502 enthusiasts! Following in what seems like every other 8-bit curmudgeon's footsteps, I've spent the last few months working on a compact, affordable 6502 SBC for my own enjoyment and (hopefully, one day) to serve as the core around which I'll build a wholesome afterschool ...