DreamCart: for new games a new kind of cart support is now possible!

Discussion, Reviews & High-scores

Moderator: Moderators

User avatar
MCes
Vic 20 Afficionado
Posts: 458
Joined: Fri Jul 24, 2015 1:19 am
Location: Italy

Re: DreamCart: for new games a new kind of cart support is now possible!

Post by MCes »

Mike wrote: Sun Dec 20, 2020 7:22 am (...)
In any case, you would use part of I/O x to hold paged ROM data (say, I/O 2 to transfer 1K pages in one go), from which BLK1..3 (and eventually BLK5) are filled (...)
You'd need an 8 bit latch register for the upper address lines of the (E)EPROM, the register which would be located in I/O 3. 6 bit would map in one of the 1K pages of the (E)EPROM into I/O 2 (used for the startup procedure), at least 1 bit selects between ROM or RAM in BLK5. Plus some glue logic.

Is this more like what you're up to?
It's similar at what I'm thinking, but my "pages of stored datas" are not deep 1k (I/O3), but it's deep 8k (BLK 5) so my register for paging has to be 3bit deep for define 8pages.If the register's bit 7b=0 (startup) then the BLK 5 is "ROM over RAM":if you read on BLK5 you will read from the selected pages of ROM, but if you write on BLK5 you will write on the covered RAM, than concettually (on BLK5) you can "LDA" and "STA" into the same address and at the end BLK5 RAM will be the copy of the selected page of ROM.
At the end of the all copy process the register's bit 7b will set: the BLK5 8k ROM window will disappear and the BLK5 RAM will be present (standard behaviour: read & write).

This implémentation make architecture easy and flexible: a sw developer can use unused ROM pages as multiple banks of datas (on BLK5) 8k deep (as datas for new game levels....) similarly to loading from a disk the BLK5 area, but without accessing any peripherals.....
And at power up: ROM will be find (read) on BLK5 for the cartridge "auto start key"....

VIC20P1.png
"Two things are infinite, the universe and human stupidity, and I am not yet completely sure about the universe." (Albert Einstein)
User avatar
MCes
Vic 20 Afficionado
Posts: 458
Joined: Fri Jul 24, 2015 1:19 am
Location: Italy

Re: DreamCart: for new games a new kind of cart support is now possible!

Post by MCes »

The DreamCart project was suspended due to lack of time (I was developing other projects, even JOLLY CART ...), but writing the ML launcher for JOLLYCART I wrote also a first tentative of multi banks launcher for DreamCart, the result.....
(source: viewtopic.php?f=10&t=9932)
P_20211117_090715.jpg
This is only a prototype, it appear to work properly, but someone suggested me a feature to add on it:
to use a FLASH ROM that can be programmed via VIC20 by the final user!
A maximum of 512k Bytes (64banks of 8k each) could be implemented...
Could be interesting?
"Two things are infinite, the universe and human stupidity, and I am not yet completely sure about the universe." (Albert Einstein)
doug_in_nc
Vic 20 Enthusiast
Posts: 160
Joined: Wed Feb 24, 2021 11:32 am
Location: NC, USA
Occupation: Engineer

Re: DreamCart: for new games a new kind of cart support is now possible!

Post by doug_in_nc »

MCes wrote: Wed Nov 17, 2021 2:14 pm

This is only a prototype, it appear to work properly, but someone suggested me a feature to add on it:
to use a FLASH ROM that can be programmed via VIC20 by the final user!
A maximum of 512k Bytes (64banks of 8k each) could be implemented...
Could be interesting?
I like the idea of having flash rom. You could use it for storing position an an adventure game, high score tables etc. Obviously you wouldn't need 512K for that, but I'm sure people could come up with much more creative uses for it.
Post Reply