6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Thu May 16, 2024 11:14 pm

All times are UTC




Post new topic Reply to topic  [ 25 posts ]  Go to page Previous  1, 2
Author Message
PostPosted: Fri Oct 22, 2021 4:41 pm 
Offline

Joined: Sun May 30, 2021 2:16 am
Posts: 374
hoglet wrote:

Another even simpler idea would be to just make the "ROM" writeable! Then you could so the copy in software.

Dave


You just read my mind. I was hesitant to do that, because there could be unintended consequences of making ROM into RAM. But, If I tucked a little xmodem-based program (for the sake of ease) somewhere in the address range outside of the current "ROM" address range, I could call it from the monitor and then use it to overwrite the monitor.

What do you think?

Jon

Oh, PS: I got that Pynq Z2 board you showed me a while ago. Amazing piece of hardware! It kicks the butt of the Arty Z7.


Top
 Profile  
Reply with quote  
PostPosted: Fri Oct 22, 2021 5:02 pm 
Offline

Joined: Sun Jun 29, 2014 5:42 am
Posts: 337
Jmstein7 wrote:
What do you think?

That should work, give it a try...
Jmstein7 wrote:
Oh, PS: I got that Pynq Z2 board you showed me a while ago. Amazing piece of hardware! It kicks the butt of the Arty Z7.

Yes, I haven't done that much with mine, because I really hate Vivado. I did do a port of the Beeb FPGA last June, which uses HDMI and allows a USB keyboard to be used. It's still sitting on the dev branch. This is the top level design.

Dave


Top
 Profile  
Reply with quote  
PostPosted: Fri Oct 22, 2021 5:35 pm 
Offline

Joined: Sun May 30, 2021 2:16 am
Posts: 374
hoglet wrote:
Jmstein7 wrote:
What do you think?

That should work, give it a try...
Jmstein7 wrote:
Oh, PS: I got that Pynq Z2 board you showed me a while ago. Amazing piece of hardware! It kicks the butt of the Arty Z7.

Yes, I haven't done that much with mine, because I really hate Vivado. I did do a port of the Beeb FPGA last June, which uses HDMI and allows a USB keyboard to be used. It's still sitting on the dev branch. This is the top level design.

Dave


Speaking of the Beeb, I just watched Micro Men for the first time. I had no idea all that went on on your side of the pond - very interesting stuff! I hear Sinclair just passed away recently.


Top
 Profile  
Reply with quote  
PostPosted: Fri Oct 22, 2021 11:30 pm 
Offline

Joined: Sun May 30, 2021 2:16 am
Posts: 374
hoglet wrote:
Jmstein7 wrote:
What do you think?

That should work, give it a try...
Jmstein7 wrote:
Oh, PS: I got that Pynq Z2 board you showed me a while ago. Amazing piece of hardware! It kicks the butt of the Arty Z7.

Yes, I haven't done that much with mine, because I really hate Vivado. I did do a port of the Beeb FPGA last June, which uses HDMI and allows a USB keyboard to be used. It's still sitting on the dev branch. This is the top level design.

Dave


Dave, it worked!!! Now, if you want to replace the monitor ($C000-$FFFF), there is a small bit of hard-coded ROM at $B000. If you run it (B000R at the built-in monitor), it will start an Xmodem transaction that will allow you to upload a .prg file to replace the current monitor - all without re-synthesizing and re-implementing the whole thing!

Jonathan


Top
 Profile  
Reply with quote  
PostPosted: Mon Oct 25, 2021 12:05 pm 
Offline

Joined: Sun May 30, 2021 2:16 am
Posts: 374
Now I just need to re-write the monitor to take total advantage of the 65c816 native mode - I couldn't find any pre-existing 65xx monitors that weren't written for the 'c02.


Top
 Profile  
Reply with quote  
PostPosted: Tue Oct 26, 2021 12:27 am 
Offline

Joined: Mon Sep 14, 2015 8:50 pm
Posts: 110
Location: Virginia USA
You might investigate BDD's SuperMon 816 here: http://sbc.bcstechnology.net/
click on Downloads on left.


Top
 Profile  
Reply with quote  
PostPosted: Tue Oct 26, 2021 8:00 am 
Offline
User avatar

Joined: Wed Feb 14, 2018 2:33 pm
Posts: 1412
Location: Scotland
Jmstein7 wrote:
Now I just need to re-write the monitor to take total advantage of the 65c816 native mode - I couldn't find any pre-existing 65xx monitors that weren't written for the 'c02.


When I moved from 65C02 to my '816 boards I more or less kept the same C02 code and took the view that it was then up to the application to switch to native mode if it needed to. That made it easier to run up things like BBC Basic and so on.

-Gordon

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


Top
 Profile  
Reply with quote  
PostPosted: Tue Oct 26, 2021 1:22 pm 
Offline

Joined: Sun May 30, 2021 2:16 am
Posts: 374
drogon wrote:

When I moved from 65C02 to my '816 boards I more or less kept the same C02 code and took the view that it was then up to the application to switch to native mode if it needed to. That made it easier to run up things like BBC Basic and so on.

-Gordon


That's what I'm using now, but the issue is that you can't access addresses beyond the first 64k (with, say, a traditional WozMon).

The other thing I'd like to try - but I don't know where to start - is going beyond just simple text over UART to some sort of primitive graphics. I still want to take input over serial, but I want to learn how to do VGA and character ROMs and maybe output to a VGA monitor.

Jon


Top
 Profile  
Reply with quote  
PostPosted: Tue Oct 26, 2021 1:25 pm 
Offline

Joined: Sun May 30, 2021 2:16 am
Posts: 374
handyandy wrote:
You might investigate BDD's SuperMon 816 here: http://sbc.bcstechnology.net/
click on Downloads on left.


I like what you wrote on your site about the question of obsolescence. Heck no! :-)

Jon


Top
 Profile  
Reply with quote  
PostPosted: Tue Oct 26, 2021 6:59 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8438
Location: Southern California
Jmstein7 wrote:
I like what you wrote on your site about the question of obsolescence. Heck no! :-)

Forum member Samuel Falvo (kc5tja) has a couple of good related essays:


_________________
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  [ 25 posts ]  Go to page Previous  1, 2

All times are UTC


Who is online

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