6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Fri Jul 05, 2024 3:01 pm

All times are UTC




Post new topic Reply to topic  [ 40 posts ]  Go to page 1, 2, 3  Next
Author Message
 Post subject: Weird JMP problem
PostPosted: Sat Mar 02, 2013 3:34 am 
Offline

Joined: Sat Mar 02, 2013 3:21 am
Posts: 26
Hello!
I am currently building a 65c02 computer, and have an odd problem. The JMP and JSR opcodes, instead of jumping to the correct locations in memory, will often jump to a random address. I have not experienced this with any other operation. The bug occurs frequently and I have yet to find a reason or a solution for it. Anyone have an idea?
The model of CPU is the W65C02S6TPG-14. The computer is constructed on breadboards, with a CY7C199-35PC 32K SRAM IC directly connected to address lines 0 to 14. My code runs fine in multiple 6502 emulators, just a simple jump back to $0000.
Thank you in advance,
John


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 3:44 am 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8464
Location: Southern California
Are all the other instructions working right? What kind of construction? I ask because this processor's edges may be too fast for especially the solderless breadboards.

_________________
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?


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 4:01 am 
Offline

Joined: Sat Mar 02, 2013 3:21 am
Posts: 26
Construction is on a solderless breadboard, about 3 of them all packed together. I'm using telephone wire for jumpers. I haven't tried all of the other instructions, but NOP and BRK work fine. The computer is being single-stepped.


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 4:30 am 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8464
Location: Southern California
I've never heard of a problem like that, but solderless breadboards are the worst of all worlds for this kind of thing. Still, if you have a clean clock signal and the phase 0 input is connected with very short wires to the clock source, ie, no flying or bundled wires, it should still work, especially if you mean you are single-cycling it. Otherwise the wires act as inductors and antennas talking to each other and edges from other wires will couple into the clock input causing unwanted extra triggering. This kind of construction also makes for a ton of groundbounce that has a similar effect. The page entitled, Construction: Avoiding AC-Performance Problems in the 6502 Primer should be a good guide, and has links to more. I wouldn't rule out that your problem is something entirely different, but encouraging beginning builders to get off to a better start can prevent a lot of frustration for them.

_________________
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?


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 6:50 am 
Offline
User avatar

Joined: Tue Nov 16, 2010 8:00 am
Posts: 2353
Location: Gouda, The Netherlands
How are you implementing the single step ? If there are glitches on the clock, that could cause some problems.


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 7:38 am 
Offline

Joined: Sat Oct 20, 2012 8:41 pm
Posts: 87
Location: San Diego
Mercury1964 wrote:
The computer is constructed on breadboards


What's the clock speed?


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 1:49 pm 
Offline

Joined: Sat Mar 02, 2013 3:21 am
Posts: 26
I did mean single-cycled, sorry about that. The clock is a monostable multivibrator made from a 555 timer with a transistor to invert the signal. Before the computer had its RAM, I directly wired the data lines to NOP, and the clock didn't have any issues advancing through memory. Also, I noticed something else with the issue: the longer I wait between cycles, the more likely the bug is to occur.


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 2:10 pm 
Offline
User avatar

Joined: Thu Dec 11, 2008 1:28 pm
Posts: 10838
Location: England
Will the clock edges be adequately fast? Both JMP and JSR have to route the final operand byte (the MSB) direct from the data bus at the close of the final cycle out to the address bus at the beginning of the next cycle. Is the MSB corrupt, or both bytes of the address? Has any other opcode with an operand worked?


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 2:45 pm 
Offline

Joined: Sat Mar 02, 2013 3:21 am
Posts: 26
I don't have an oscilliscope yet, so I don't know. Also, I looked and saw that this also occurs with NOP. It seems that if I wait in the first cycle of the instruction, the next address will be incorrect. I'm still probing the JMPs, though.


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 3:14 pm 
Offline
User avatar

Joined: Thu Dec 11, 2008 1:28 pm
Posts: 10838
Location: England
Ah, that's good, if it's not just JMP - less mysterious!


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 3:35 pm 
Offline

Joined: Sat Mar 02, 2013 3:21 am
Posts: 26
Okay, new data with JMP. I put a jump to $0000 at address $0000 and put a few dozen NOPs behind that. When I cycled through it, it got to the high-order byte of the JMP command. Then, the address lines went blank for ~3 cycles or so before resuming at the next NOP instruction, appearing to have just skipped the jump. I'm thinking that before, when I wasn't using a NOP buffer after the instruction, it would reach the next instruction (BRK or some other, random opcode - i didn't clear the entire RAM space) and would produce the odd results. I still don't really know.


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 4:03 pm 
Offline
User avatar

Joined: Thu Dec 11, 2008 1:28 pm
Posts: 10838
Location: England
By blank do you mean zero?


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 6:25 pm 
Offline

Joined: Sat Mar 02, 2013 3:21 am
Posts: 26
I don't know. Because the monitor is in between the RAM and the 65c02, I would assume so.


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 6:29 pm 
Offline

Joined: Sat Mar 02, 2013 3:21 am
Posts: 26
The monitor is 16 LEDs in a DIP package, to be specific.


Top
 Profile  
Reply with quote  
 Post subject: Re: Weird JMP problem
PostPosted: Sat Mar 02, 2013 6:34 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8464
Location: Southern California
Do you have current-limiting resistors on the LEDs?

_________________
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?


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 40 posts ]  Go to page 1, 2, 3  Next

All times are UTC


Who is online

Users browsing this forum: GlennSmith, Paganini and 12 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to: