Identifying what 6502s from Aliexpress really are
Re: Identifying what 6502s from Aliexpress really are
The attached schematic should work fine as a NOP generator for either a 6502 or an '816. You should see an approximately 8 Hz square wave (more precisely, 7.629 Hz) on A15, and successively higher frequencies on the lower-numbered pins.
Aside from the CPU itself, I've employed a 1MHz crystal oscillator can, a 4.5V power supervisor chip as a reset generator, and some ordinary passive components. Make sure the 100nF bypass capacitor is connected directly to both the CPU and the oscillator. If that's difficult, use two of them, one on the CPU and one on the oscillator.
Aside from the CPU itself, I've employed a 1MHz crystal oscillator can, a 4.5V power supervisor chip as a reset generator, and some ordinary passive components. Make sure the 100nF bypass capacitor is connected directly to both the CPU and the oscillator. If that's difficult, use two of them, one on the CPU and one on the oscillator.
- BigDumbDinosaur
- Posts: 9425
- Joined: 28 May 2009
- Location: Midwestern USA (JB Pritzker’s dystopia)
- Contact:
Re: Identifying what 6502s from Aliexpress really are
Chromatix wrote:
The attached schematic should work fine as a NOP generator for either a 6502 or an '816. You should see an approximately 8 Hz square wave (more precisely, 7.629 Hz) on A15, and successively higher frequencies on the lower-numbered pins.
Aside from the CPU itself, I've employed a 1MHz crystal oscillator can, a 4.5V power supervisor chip as a reset generator, and some ordinary passive components. Make sure the 100nF bypass capacitor is connected directly to both the CPU and the oscillator. If that's difficult, use two of them, one on the CPU and one on the oscillator.
Aside from the CPU itself, I've employed a 1MHz crystal oscillator can, a 4.5V power supervisor chip as a reset generator, and some ordinary passive components. Make sure the 100nF bypass capacitor is connected directly to both the CPU and the oscillator. If that's difficult, use two of them, one on the CPU and one on the oscillator.
x86? We ain't got no x86. We don't NEED no stinking x86!
Re: Identifying what 6502s from Aliexpress really are
Just for you, here's a monochrome version. We really do need to find you a black-and-white accessibility switch for your computer.
Re: Identifying what 6502s from Aliexpress really are
Chromatix wrote:
We really do need to find you a black-and-white accessibility switch for your computer.
(That said, given BDD's sig, I wonder if he has a machine capable of running Windows. :-))
I would assume that the Mac has something similar; in most areas it's not usually too far behind Windows 10.
I've not looked around for what's available for X11 systems, but if worst comes to worst it ought not be too hard to modify the xmag program to colour-filter the area it's looking at, rather than magnify it.
Curt J. Sampson - github.com/0cjs
- BigDumbDinosaur
- Posts: 9425
- Joined: 28 May 2009
- Location: Midwestern USA (JB Pritzker’s dystopia)
- Contact:
Re: Identifying what 6502s from Aliexpress really are
Chromatix wrote:
Just for you, here's a monochrome version. We really do need to find you a black-and-white accessibility switch for your computer.
x86? We ain't got no x86. We don't NEED no stinking x86!
- BigDumbDinosaur
- Posts: 9425
- Joined: 28 May 2009
- Location: Midwestern USA (JB Pritzker’s dystopia)
- Contact:
Re: Identifying what 6502s from Aliexpress really are
cjs wrote:
(That said, given BDD's sig, I wonder if he has a machine capable of running Windows.
)
BTW, my particular vision problem is tritanomaly, which is partial blue-green color-blindness.
x86? We ain't got no x86. We don't NEED no stinking x86!
Re: Identifying what 6502s from Aliexpress really are
It takes extra steps to remove the colour from a KiCad schematic. Meanwhile, those of us with normal colour vision find the coloured version easier to read, and most forms of colour deficiency shouldn't affect readability worse than removing the colour manually, since the latter leaves the luminance information intact.
In this case, the schematic was posted primarily for the benefit of a particular user.
In this case, the schematic was posted primarily for the benefit of a particular user.
- GARTHWILSON
- Forum Moderator
- Posts: 8773
- Joined: 30 Aug 2002
- Location: Southern California
- Contact:
Re: Identifying what 6502s from Aliexpress really are
Chromatix wrote:
It takes extra steps to remove the colour from a KiCad schematic. Meanwhile, those of us with normal colour vision find the coloured version easier to read
I don't have any colorblindness, but I do like schematics to be black lines on a white background. PCB layouts of course need different colors for each layer so you can tell them apart when they're in the same space. Related, I also don't like color for programming source code, except for html since you might have lots of tags on a single line and most pairs are not made to stand out by indentation like we have in most programming.
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?
Re: Identifying what 6502s from Aliexpress really are
Chromatix wrote:
The attached schematic should work fine as a NOP generator for either a 6502 or an '816. You should see an approximately 8 Hz square wave (more precisely, 7.629 Hz) on A15, and successively higher frequencies on the lower-numbered pins.
Aside from the CPU itself, I've employed a 1MHz crystal oscillator can, a 4.5V power supervisor chip as a reset generator, and some ordinary passive components. Make sure the 100nF bypass capacitor is connected directly to both the CPU and the oscillator. If that's difficult, use two of them, one on the CPU and one on the oscillator.
Aside from the CPU itself, I've employed a 1MHz crystal oscillator can, a 4.5V power supervisor chip as a reset generator, and some ordinary passive components. Make sure the 100nF bypass capacitor is connected directly to both the CPU and the oscillator. If that's difficult, use two of them, one on the CPU and one on the oscillator.
Is there some simple wat to test UM6527 CPUs, used in Faicom/NES clones? I also bought some of them.
Re: Identifying what 6502s from Aliexpress really are
Quote:
I didn't use reset controller, just pulled RST pin high with 3.3k resistor.
I can't find any direct documentation of what a UM6527 is, except for a substitution reference which equates it to a UM6547 - which is also undocumented, but sounds suspiciously similar to the M6847 which was a moderately popular video generation IC. The main CPU in the NES was the NEC 2A03, which had a 6502 core but a different pinout to the 6502 proper. If the UM6527 is a clone of the 2A03, then it could be tested as such, but I can't recommend that until I see more reliable evidence.
Re: Identifying what 6502s from Aliexpress really are
Atlantis wrote:
I didn't use reset controller, just pulled RST pin high with 3.3k resistor. Was it a bad idea? Could it produce different result of a NOP test somehow?
Curt J. Sampson - github.com/0cjs
Re: Identifying what 6502s from Aliexpress really are
Chromatix wrote:
Quote:
I didn't use reset controller, just pulled RST pin high with 3.3k resistor.
During my previous tests I tried to manually reset some of this CPUs, by briefly grounding RST with jumper wire. They still weren't generating proper RST signals after that. But maybe there will be at least few more which will work.
This still doesn't explain why none of that chips (even those generating valid signals on breadboard) doesn't want to work with my computer. And yes - there is reset controller present in my design.
UPDATE: It turns out it wasn't because of lacking reset controller. I added DS1813 to my breadboard test circuit. CPUs that weren't working before still doesn't work. There is still slight possibility that some of them are different version, requiring different wiring but I don't think so. That leaves mi with six that passed NOP test, but still my computer won't work with them. Any idea why?
- BigDumbDinosaur
- Posts: 9425
- Joined: 28 May 2009
- Location: Midwestern USA (JB Pritzker’s dystopia)
- Contact:
Re: Identifying what 6502s from Aliexpress really are
GARTHWILSON wrote:
I don't have any colorblindness, but I do like schematics to be black lines on a white background.
BTW, another reason to post schematics in monochrome is the resulting files can be smaller, which conserves server space.
x86? We ain't got no x86. We don't NEED no stinking x86!
Re: Identifying what 6502s from Aliexpress really are
I'm pretty sure you posted a colour schematic earlier this year BDD!
Re: Identifying what 6502s from Aliexpress really are
Atlantis, in order to troubleshoot your computer, we will need the schematics and ideally a photograph. It's pretty hard to theorise without knowing what techniques you've used, both logically and physically.