6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Sat Sep 21, 2024 3:24 am

All times are UTC




Post new topic Reply to topic  [ 21 posts ]  Go to page Previous  1, 2
Author Message
PostPosted: Wed Sep 18, 2024 3:33 pm 
Offline

Joined: Tue Sep 26, 2023 11:09 am
Posts: 97
That article is great, thank you!

lol, this is me: "Since few designers understand, let alone consider read/write timing, it is a wonder that most microcomputer systems work at all"

I will keep experimenting.


Top
 Profile  
Reply with quote  
PostPosted: Wed Sep 18, 2024 10:26 pm 
Offline

Joined: Tue Sep 26, 2023 11:09 am
Posts: 97
Here are a pair of traces. The bottom one is the original setup using phi1-qualified writes, where I get this phantom write occasionally. The top one is the working setup using /phi2-qualified write, where phi2, /phi2 are symmetric outputs from halved clock via hc74 flipflop. Vertical scale is 2V (0-5V signal), horizontal is 10ns.

Both traces capture a rising edge of /MW which is /WE on the RAM AS6C1008. From the RAM datasheet this is what locks the actual write. It seems to want 25ns setup time before the rising edge (this shouldn't be an issue), and 0ns+ hold time after. The 65c02 datasheet says we get 10ns+ hold time for both address and data after the phi2 falling edge (am I reading that correctly?). So we want the rising /WE edge within 10ns of the falling phi2 one.

Looking at the 50% voltage point (is that right?), it seems like the bad case shows about 20ns between the falling phi2 and the rising /WE. There's about 10ns lag between phi1 and phi2 plus about 12ns lag from phi1 to /we, which seems about what to expect from the hc139's datasheet. So that's too slow to be guaranteed to lock the addr/data that the 65c02 is holding?

In the good case we see only about 7-8ns lag from phi2 to /we, in fact /we rises a little before the cpu's phi1 output. I don't have the /phi2 signal on the trace since I was assuming it was just the inverse of phi2, but maybe that's not quite right since otherwise you'd expect a similar 12ns lag for the hc139?

But from these traces it seems like any write strobe generated downstream of phi1 is going to be too slow to meet the 10ns limit after phi2? So I'm probably missing something!


Attachments:
File comment: /MW clock-qualified with symmetric(?) phi2, /phi2 from hc74 flipflop

ch1 (yellow) is phi2
ch2 (blue) is phi1
ch3 (magenta) is /MW

IMG_4921.jpg
IMG_4921.jpg [ 286.24 KiB | Viewed 262 times ]
File comment: /MW clock-qualified with phi1 out from w65c02

ch1 (yellow) is phi2
ch2 (blue) is phi1
ch3 (magenta) is /MW

IMG_4922.jpg
IMG_4922.jpg [ 353 KiB | Viewed 262 times ]
Top
 Profile  
Reply with quote  
PostPosted: Thu Sep 19, 2024 12:05 am 
Offline

Joined: Tue Sep 26, 2023 11:09 am
Posts: 97
For completeness, here's a trace of clock in (ch3, purple) with Q (ch1, yellow) and /Q (ch2, blue) outputs. It does look like 2-3ns lag between the two, so perhaps explains the slight discrepancy above.

One other idea I'm curious about. I followed Michael's diagram and simply wired the SRAM's /CS1 to ground. What if I wired /CS1 to phi1, leaving CS2 = /HI and /WE = /MW as is. I This would give a rising edge on /CS1 before the /WE rising edge. Would that lock the write earlier (the datasheet describes write cycle 2 "controlled by CE#, CE2") and potentially fix my problem?

I'll give it a try but curious if I'm reasoning correctly there.


Attachments:
sram.jpg
sram.jpg [ 243.79 KiB | Viewed 255 times ]
IMG_4924.jpg
IMG_4924.jpg [ 366.01 KiB | Viewed 255 times ]
Top
 Profile  
Reply with quote  
PostPosted: Thu Sep 19, 2024 12:58 am 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8390
Location: Midwestern USA
74HC logic, while fast enough for a system running at 8 MHz, is problematic with WDC MPUs operating on 5 volts due to their short setup and hold times (which are primarily affected by operating voltage and temperature).  In particular, your use of the 74HC139 to generate the time-critical /RD and /WD outputs is not a good choice, in my opinion.

Looking at a write cycle, tDHW on the WDC 65C02 running at 5 volts will be, according to the data sheet, 10 ns minimum.  The key word is minimum, which is the number that your circuit must be able to achieve to assure reliable operation.  Simply put, /WD must be driven high before tDHW expires, which means /WD must go high no later than 10 ns after the fall of the clock.

The 74HC139’s typical prop time runs around 11 ns on 5 volts, which only accounts for the time the device requires to set up its outputs according to its input conditions.  That alone exceeds the C02’s tDHW minimum, which condition virtually guarantees trouble.  As designed, your circuit has a strong chance that /WD will still be asserted after tDHW has expired.  As I said before (which you apparently missed), in your circuit, the state of the address bus will likely be changing before /WD has gone high, which creates an opportunity for a wild write.

Here’s a circuit that will meet all read/write timing requirements:

Attachment:
File comment: Read/Write Generation
read_write_qualify_alt.gif
read_write_qualify_alt.gif [ 46.98 KiB | Viewed 241 times ]

The above circuit tracks Ø2 within the tPD of a 74AC00, which is usually in the single-digit nanosecond range on five volts.  The above circuit will also work with 74AHC logic with no loss of performance.  The 74AC version has been tested at 20 MHz.
 
Quote:
One other idea I'm curious about. I followed Michael's diagram and simply wired the SRAM's /CS1 to ground. What if I wired /CS1 to phi1, leaving CS2 = /HI and /WE = /MW as is. I This would give a rising edge on /CS1 before the /WE rising edge. Would that lock the write earlier (the datasheet describes write cycle 2 "controlled by CE#, CE2") and potentially fix my problem?

I do not recommend qualifying chip selects with the clock.  The SRAM will respond most rapidly to activity on its /OE and /WE inputs if it is selected during Ø2 low.  In my applications, I tie CS2 to VCC, and gate /CS1 to select the SRAM.

——————————
Edit: Fixed a typo.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Last edited by BigDumbDinosaur on Thu Sep 19, 2024 6:30 pm, edited 1 time in total.

Top
 Profile  
Reply with quote  
PostPosted: Thu Sep 19, 2024 2:36 pm 
Offline

Joined: Fri Mar 18, 2022 6:33 pm
Posts: 489
pdragon wrote:
But from these traces it seems like any write strobe generated downstream of phi1 is going to be too slow to meet the 10ns limit after phi2? So I'm probably missing something!
I don't think you're missing anything. All that this means is that your design is out of spec according to the data sheet. Unfortunately, the data sheet is mostly fictional. Our universal lived experience is that HC logic works fine for this. Regardless of hold time, whatever was last on the bus will stick around for *milliseconds* due to bus capacitance. As long as your /WE goes high before the 6502 has started driving the bus *in the following cycle* you will be fine.

That being said, though, why not just use an AHC part and be in spec? The only downside is that your system might be able to go faster! :D

You have it set up like this, right?
Attachment:
Screen Shot 2024-09-19 at 10.37.14 AM.png
Screen Shot 2024-09-19 at 10.37.14 AM.png [ 47.21 KiB | Viewed 148 times ]


pdragon wrote:
So we want the rising /WE edge within 10ns of the falling phi2 one.

Looking at the 50% voltage point (is that right?), it seems like the bad case shows about 20ns between the falling phi2 and the rising /WE. There's about 10ns lag between phi1 and phi2 plus about 12ns lag from phi1 to /we, which seems about what to expect from the hc139's datasheet. So that's too slow to be guaranteed to lock the addr/data that the 65c02 is holding?
Keep in mind that the kind of glitch you are experiencing is not the kind of glitch that happens if your write strobe rises too late. If your write strobe rises after the 6502 has started changing the bus for the next cycle you may get the *wrong data* in the *right place.* Your glitch is the *right data* in the *wrong place* (or in multiple places). In other words, it's an address bus problem. *Unless* (this just occurred to me) it's holding so long that the address lines have started to change from $01FC to $01FB. A0 and A1 will be '1' in $01FB, so if WE\ is still low when A0 and A1 have changed (but not the other address lines yet) the SRAM will write to $01FF. (Maybe a better way to say this is that the only difference between $01FF and $01FB is the A2 line. If A1 and A0 go high before A2 goes low *AND* WE\ is still asserted at that time, it could account for overwriting $01FF.)

_________________
"The key is not to let the hardware sense any fear." - Radical Brad


Top
 Profile  
Reply with quote  
PostPosted: Thu Sep 19, 2024 8:08 pm 
Offline

Joined: Tue Sep 26, 2023 11:09 am
Posts: 97
for sure, sounds like an AHC part is a safer bet, at least for the '139. also, given a 7-8ns lag of phi1 from phi2, it sounds like it would be almost impossible to do clock-qualifying with the onboard phi1 in a way that met the 10ns spec. tho as you say it might still work in practice if you had fast ac/ahc logic there. but again sounds safer to stick with a clock divider.

and as both of you point out, the symptom i'm seeing is likely that the address bus is already starting to change for the second write in the jsr push-word sequence. the spec says a min of 10ns for both addr and data hold, but a max of 30ns setup before the second address is ready. so the 20ns delay I measured is somewhere in that no-man's land where it might actually be writing the previous $f1 data item that's still hanging around onto some corrupted address like you say.

thanks for the advice and patience as i bend my brain around this stuff...


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

All times are UTC


Who is online

Users browsing this forum: No registered users and 20 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: