6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Sat Sep 28, 2024 8:18 pm

All times are UTC




Post new topic Reply to topic  [ 41 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject: Re: Serial bootstrap
PostPosted: Sat Dec 22, 2018 6:12 pm 
Offline
User avatar

Joined: Wed Feb 14, 2018 2:33 pm
Posts: 1467
Location: Scotland
plasmo wrote:
Is there a trick to tri-state the address/data/control bus of W65C02? The documentation indicates that pulling BE low will cause the address/data/control bus to tri-state, but poking around the chip with a scope, it doesn't seem to do it. Pulling RDY low along with BE helps somewhat, but address lines appear to be driven still.

I want to tri-state W65C02 immediately after reset so a DMA device can take over the bus and fill the RAM with bootstrap code but the CPU does not appear to release the bus because I can only drive addresses to 2V and current consumption rises dramatically up to 300mA depending on how many address lines are in contention.
Bill


There is no trick - pull BE low and the 6502 address and data buses are tristated. Do make sure it's either in Reset mode (Reset pulled low) or !Rdy (ie. Rdy pulled Low) or it will free-run with unpredictable results. If that didn't work in my board then it just wouldn't work at all.

Do you have a real W65C02S in there?

-Gordon

_________________
--
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sat Dec 22, 2018 8:25 pm 
Offline

Joined: Fri Dec 21, 2018 1:05 am
Posts: 1110
Location: Albuquerque NM USA
Still unable to get address bus to tri-state even by driving RESET, BE and RDY all low right after power is applied.

It is a good question whether I have a real/working W65C02S8P-10 or not. I bought a lot of 5pcs off eBay from some random seller in China. I have been lucky for the last couple years, but it is possible my luck have run out. Power it up with whatever random data in RAM it seems to execute something: SYNC is toggling, some addresses are changing, and RWB line toggling. I suppose I can jam NOP instruction into the data bus and see whether the address will count up to FFFF and roll over and over.

For now, I'm current limiting the address lines with 240 ohm series resistors and see if I can continue testing.
Bill


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sat Dec 22, 2018 8:32 pm 
Offline
User avatar

Joined: Wed Feb 14, 2018 2:33 pm
Posts: 1467
Location: Scotland
plasmo wrote:
Still unable to get address bus to tri-state even by driving RESET, BE and RDY all low right after power is applied.

It is a good question whether I have a real/working W65C02S8P-10 or not. I bought a lot of 5pcs off eBay from some random seller in China. I have been lucky for the last couple years, but it is possible my luck have run out. Power it up with whatever random data in RAM it seems to execute something: SYNC is toggling, some addresses are changing, and RWB line toggling. I suppose I can jam NOP instruction into the data bus and see whether the address will count up to FFFF and roll over and over.

For now, I'm current limiting the address lines with 240 ohm series resistors and see if I can continue testing.
Bill


You can (and should) buy them brand-new from Mouser. They are in-production, so no need to go to China for them whatsoever.

See close-up of: https://unicorn.drogon.net/IMG_20181115_164041.jpg for the chip markings on one I got from them.

-Gordon

_________________
--
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sat Dec 22, 2018 8:42 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8520
Location: Southern California
plasmo wrote:
Still unable to get address bus to tri-state even by driving RESET, BE and RDY all low right after power is applied.

It is a good question whether I have a real/working W65C02S8P-10 or not. I bought a lot of 5pcs off eBay from some random seller in China. I have been lucky for the last couple years, but it is possible my luck have run out.

Yep, there's quite a large counterfeiting industry going on there with pulling ICs out of boards, cleaning them up, and re-labeling them before sale. I've seen quite a few short videos documenting that, like this one: https://www.youtube.com/watch?v=5vN_7NJ4qYA

_________________
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: Serial bootstrap
PostPosted: Sat Dec 22, 2018 8:43 pm 
Offline

Joined: Fri Dec 21, 2018 1:05 am
Posts: 1110
Location: Albuquerque NM USA
Let see if I can load decent photos to the forum:

This is the baseline G8PP board I started from yesterday.


Attachments:
DSC_41231222.jpg
DSC_41231222.jpg [ 1.91 MiB | Viewed 1549 times ]
DSC_41221222.jpg
DSC_41221222.jpg [ 1.67 MiB | Viewed 1549 times ]
Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sat Dec 22, 2018 8:45 pm 
Offline

Joined: Fri Dec 21, 2018 1:05 am
Posts: 1110
Location: Albuquerque NM USA
This is the G8PP+6502 as of a couple hours ago. The series resistors on address lines are not yet added in the photo. Clock is 7.37MHz. Signals look reasonably clean on the scope. I think I'm loading serial data into RAM and observing it bootstrapping after 255 bytes, but it is not executing correctly. There are many moving pieces to this puzzle, one of them is that I don't know much about 6502 assembly instructions. Climbing a steep hill but having fun!
Bill


Attachments:
DSC_41281222.jpg
DSC_41281222.jpg [ 1.54 MiB | Viewed 1550 times ]
DSC_41271222.jpg
DSC_41271222.jpg [ 1.51 MiB | Viewed 1550 times ]
Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sat Dec 22, 2018 8:51 pm 
Offline
User avatar

Joined: Wed Feb 14, 2018 2:33 pm
Posts: 1467
Location: Scotland
The logo on the chip doesn't look right - starting to think you may have a dud...

-Gordon

_________________
--
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sun Dec 23, 2018 11:01 am 
Offline
User avatar

Joined: Tue Mar 02, 2004 8:55 am
Posts: 996
Location: Berkshire, UK
Where are you based plasmo? I have some 65C02 spares (bought from WDC and official WDC resellers)

_________________
Andrew Jacobs
6502 & PIC Stuff - http://www.obelisk.me.uk/
Cross-Platform 6502/65C02/65816 Macro Assembler - http://www.obelisk.me.uk/dev65/
Open Source Projects - https://github.com/andrew-jacobs


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sun Dec 23, 2018 12:40 pm 
Offline

Joined: Fri Dec 21, 2018 1:05 am
Posts: 1110
Location: Albuquerque NM USA
I live in Albuquerque, New Mexico, USA. Are you in UK? I'm probably better off with Mouser as drogon had suggested. Thank you for your kind offer.

I did hook up a logic analyzer and verify the serial bootstrap stage when 6502 is tri-stated and 255 serial data are written into RAM. Afterward 6502 did not behaved as I expected. I never worked with 6502 so I'm not sure what I should see. Can someone describes the first dozen transactions after reset? I expect 6502 to put out address 0xFFFC and 0xFFFD, wait a few clocks and then start fetch instruction from 0xFF00 (the reset vector supplied). What should I see on VPB, MLB, SYNC, and RWB?

I did replaced the first 6502, but the 2nd one appears to be the same. I think this morning I'll set up a free-running experiment on a solderless breadboard--just tie data bus to 0xEA and let it run--and see what happens.
Bill


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sun Dec 23, 2018 12:58 pm 
Offline
User avatar

Joined: Wed Feb 14, 2018 2:33 pm
Posts: 1467
Location: Scotland
plasmo wrote:
I live in Albuquerque, New Mexico, USA. Are you in UK? I'm probably better off with Mouser as drogon had suggested. Thank you for your kind offer.

I did hook up a logic analyzer and verify the serial bootstrap stage when 6502 is tri-stated and 255 serial data are written into RAM. Afterward 6502 did not behaved as I expected. I never worked with 6502 so I'm not sure what I should see. Can someone describes the first dozen transactions after reset? I expect 6502 to put out address 0xFFFC and 0xFFFD, wait a few clocks and then start fetch instruction from 0xFF00 (the reset vector supplied). What should I see on VPB, MLB, SYNC, and RWB?

I did replaced the first 6502, but the 2nd one appears to be the same. I think this morning I'll set up a free-running experiment on a solderless breadboard--just tie data bus to 0xEA and let it run--and see what happens.
Bill


I wonder if you've actually got an old NMOS 6502 rather than the 65C02, or even a non WDC 65C02 which didn't have the BE signal.... The NOP test should let you know if it's a generic 6502 at least. the BE line (pin 36) is NoConnect on the older ones.

It's also probably too late to get one delivered in any small time-scale now though, but plenty of time to try a few things out in an emulator, or something to get a feel for 6502 assembler.

-Gordon

_________________
--
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sun Dec 23, 2018 1:33 pm 
Offline

Joined: Fri Dec 21, 2018 1:05 am
Posts: 1110
Location: Albuquerque NM USA
Hmmm, that's a possibility, which means 7.37MHz is probably too fast. I can use a 1.8432MHz clock instead. I did do a free-running experiment on the existing board by reprogramming the CPLD. I do see addresses counting up, but for every address counting up there are burst of 4 accesses with dead time between them I don't expect and SYNC toggle twice per burst--feel like it is walking up an exception handling of some sort.

I'll do the solderless breadboard with slow clock where I can isolate everything from the CPU...
Bill


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sun Dec 23, 2018 4:24 pm 
Offline

Joined: Mon May 21, 2018 8:09 pm
Posts: 1462
Internally, the 6502 treats coming out of Reset the same as an interrupt, except that the writes of the return address and status register to the stack are suppressed (converted into dummy reads). You can therefore read the cycle timing from that of BRK, the software-triggered interrupt.

Reading the vector occupies the *last* two cycles before instruction fetching begins. The total number of complete cycles between /RST going high and the first opcode fetch should be 7. Effectively there are 5 "dead cycles" immediately after Reset, followed by the vector pull (2 read cycles), and the first instruction fetch follows immediately.

/IRQ and /NMI should both be held high, and you should ensure you are providing NOP opcodes ($EA) instead of BRK ($00). That should ensure you have no "exceptions" occurring. The 6502 has no internally triggered exception conditions.


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sun Dec 23, 2018 7:50 pm 
Offline

Joined: Fri Dec 21, 2018 1:05 am
Posts: 1110
Location: Albuquerque NM USA
Free running at 1.84MHz works, but not at 7.37MHz. It also free-runs at 3.84MHz, so I return to my prototype board and replace the 7.37MHz oscillator with 3.68MHz and it works! The BE still does not tri-state the address bus, so it is likely a NMOS 6502 (4MHz?) repackaged as W65C02S8P-10. If so, OK, I can live with that. It will let me continue with code development on the prototype hardware.
Bill


Top
 Profile  
Reply with quote  
 Post subject: Re: Serial bootstrap
PostPosted: Sun Dec 23, 2018 8:18 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8520
Location: Southern California
plasmo wrote:
Can someone describes the first dozen transactions after reset? I expect 6502 to put out address 0xFFFC and 0xFFFD, wait a few clocks and then start fetch instruction from 0xFF00 (the reset vector supplied). What should I see on VPB, MLB, SYNC, and RWB?

They cycle-by-cycle activity is detailed in table 5-7 starting on p.38 of the 65816 data sheet (which covers this info for the '02 as well), at http://6502.org/documents/datasheets/wd ... 1_2018.pdf .

Quote:
so it is likely a NMOS 6502

It could also be a CMOS one from another manufacturer like GTE (later CMD), Rockwell, or Synertek, which never put the extra signals on. Test the CMOS instructions and see what you get. The CMOS has a lot of other improvements too, like much, much stronger pin drivers. See http://wilsonminesco.com/NMOS-CMOSdif/ .

_________________
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: Serial bootstrap
PostPosted: Sun Dec 23, 2018 8:19 pm 
Offline
User avatar

Joined: Wed Feb 14, 2018 2:33 pm
Posts: 1467
Location: Scotland
plasmo wrote:
Free running at 1.84MHz works, but not at 7.37MHz. It also free-runs at 3.84MHz, so I return to my prototype board and replace the 7.37MHz oscillator with 3.68MHz and it works! The BE still does not tri-state the address bus, so it is likely a NMOS 6502 (4MHz?) repackaged as W65C02S8P-10. If so, OK, I can live with that. It will let me continue with code development on the prototype hardware.
Bill


Not sure the NMOS ones went over 1Mhz, but some of the early CMOS ones could do 4Mhz - I have one marked R65C02P4 (It's a Rockwell one)

However, good to know you have a 6502 at least - just not a genuine WDC 65C02S.

How to solve the bus contention though - If it is a Rockwell 65C02, then it may always be driving the address bus. Link to the Rockwell data sheet from here: http://archive.6502.org/datasheets/rock ... essors.pdf

Good luck!

-Gordon

_________________
--
Gordon Henderson.
See my Ruby 6502 and 65816 SBC projects here: https://projects.drogon.net/ruby/


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

All times are UTC


Who is online

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