Thanks everyone. Maybe I should just make my own, it doesn't look too hard to get a basic system up and running.
My idea is to use an AVR with USB port to generate a clock for the 6502 and to copy firmware into SRAM when it isn't running. Working mostly with microcontrollers I tend to write code ...
Search found 67 matches
- Tue Apr 16, 2019 10:02 am
- Forum: General Discussions
- Topic: Good starter kit for 6502
- Replies: 21
- Views: 1774
- Tue Apr 16, 2019 8:49 am
- Forum: General Discussions
- Topic: Good starter kit for 6502
- Replies: 21
- Views: 1774
Re: Good starter kit for 6502
Thanks cbmeeks, that's very generous of you! I'll PM you.
- Mon Apr 15, 2019 5:35 pm
- Forum: General Discussions
- Topic: Good starter kit for 6502
- Replies: 21
- Views: 1774
Re: Good starter kit for 6502
That's a good idea. The BBC in particular is not too hard to get here and well documented. I do enjoy restoring old machines too!
- Mon Apr 15, 2019 10:17 am
- Forum: General Discussions
- Topic: Good starter kit for 6502
- Replies: 21
- Views: 1774
Re: Good starter kit for 6502
Thanks everyone. Maybe I should just make my own, it doesn't look too hard to get a basic system up and running.
My idea is to use an AVR with USB port to generate a clock for the 6502 and to copy firmware into SRAM when it isn't running. Working mostly with microcontrollers I tend to write code on ...
My idea is to use an AVR with USB port to generate a clock for the 6502 and to copy firmware into SRAM when it isn't running. Working mostly with microcontrollers I tend to write code on ...
- Sun Apr 14, 2019 7:59 pm
- Forum: General Discussions
- Topic: Good starter kit for 6502
- Replies: 21
- Views: 1774
Good starter kit for 6502
I'm an embedded software engineer and hardware engineer. I want to start working with the 6502 and would like to buy a kit to get started.
Are there any good kits that are readily available to buy? I want something I can try running some code on and then start building up with peripherals and my ...
Are there any good kits that are readily available to buy? I want something I can try running some code on and then start building up with peripherals and my ...
- Sun Mar 17, 2019 9:20 am
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
Aye, that's what I meant.
- Sat Mar 16, 2019 11:13 pm
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
There's a project using micro controllers which might be relevant. I've put it in its own thread:
Slightly OT: an impressive video subsystem on an 8 bit micro
Interesting, they use a couple of AVRs. One to generate the video display and one as a blitter.
One idea I had was to use dual port ...
Slightly OT: an impressive video subsystem on an 8 bit micro
Interesting, they use a couple of AVRs. One to generate the video display and one as a blitter.
One idea I had was to use dual port ...
- Sat Mar 16, 2019 10:05 am
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
I actually worked on an Amiga port of Doom. It constantly redraws the entire screen, even when the player is not moving, as fast as possible. There are no partial updates, except for the status bar area at the bottom of the screen. The entire 3D scene is being constantly refreshed.
One idea to ...
One idea to ...
- Wed Mar 13, 2019 6:08 pm
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
Well, they are just killing any suggestions now, looks like they are going with the crappy Gameduino with an SPI interface. Hardly very C64 like. I guess that project is a write-off, it's going to suck.
Still, freed from the limitations of it, I'd love to see a system based on a better chip. Maybe ...
Still, freed from the limitations of it, I'd love to see a system based on a better chip. Maybe ...
- Wed Mar 13, 2019 9:33 am
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
This looks very interesting, ideal in fact: https://github.com/maccasoft/propeller-graphics-card
Just needs modifying to use the 6800 bus instead of the Z80 one.
Just needs modifying to use the 6800 bus instead of the Z80 one.
- Tue Mar 12, 2019 12:44 pm
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
What is needed is an MCU with 6502 compatible bus capability, but the only ones I found can only be bus master for talking to LCDs...
- Tue Mar 12, 2019 9:50 am
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
It's kind of a pain actually, maybe an FPGA is the way to go. But they are expensive and there are not many open source tools for them.
The open source tools are coming along. The Lattice ICE40 parts are well supported. A dev board is £20 to £50 and a chip is £5 or so. Of course, there's a ...
The open source tools are coming along. The Lattice ICE40 parts are well supported. A dev board is £20 to £50 and a chip is £5 or so. Of course, there's a ...
- Tue Mar 12, 2019 9:42 am
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
whartung wrote:
drogon wrote:
Well, that's kind of what crossed my mind regarding that VS23S010D chip.
- Mon Mar 11, 2019 6:47 pm
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
The minimum CPU is determined by the pixel clock. 640 pixels is about 25MHz, 320 is obviously half that. So for a typical game you need to pump out pixels at about 12.5MHz, for 80 column text you need 25MHz.
Now look at how fast your CPU can pump pixels. For monochrome you might be able to use an ...
Now look at how fast your CPU can pump pixels. For monochrome you might be able to use an ...
- Mon Mar 11, 2019 1:39 pm
- Forum: Hardware
- Topic: Video display controller with VGA output
- Replies: 70
- Views: 15836
Re: Video display controller with VGA output
Doing some research the only issue with that ARM is that there is some bus contention and no way to prioritize the video generation DMA. This is the basic problem with every MCU - even when you have DMA, it's never able to take priority and precise timing.