-
Content Count
20 -
Joined
-
Last visited
Posts posted by wilco2009
-
-
With the original author (Gert van der Knokke) permission I have recreated the C7420 BASIC Module
https://www.youtube.com/watch?v=w5BvdcZ9Cn8
I have used a cheaper microcontroller than the original one selecting a STM32F4VG.
And the result is really great.
I like it a lot!
Now I have to finish some details with the SD to save/load BASIC programs, and design a final PCB to fit in a 3D printed case.
I have permission from Gert to assembly a batch and publish the source code, due to it when I'll have everything finished I will start a list.
NOTE: I still have intention to make a exact clone, but this is for a near future.
-
2
-
-
FYI, there is a new very accurate Videopac / Odyssey FPGA core, with "The Voice" module built in.
The developer of this new core is Ramon Palomares (rampa).
The core is a real delight. Available on:
- MiSTer
- MiST
- SiDi
- Neptuno
- Unamiga Reloaded
- ZxDOS
- ZX Next (Soon)
https://github.com/RW-FPGA-devel-Team/Videopac-G7000-
3
-
-
22 hours ago, x=usr(1536) said:We spoke in PM about this, but for the sake of having everything in one place: please add me to the list.
Yes, you are already in the waiting list.
-
1
-
-
12 hours ago, kc7cix said:I would like to purchase when available,
Thank you
OK, you are now in the waiting list.
-
2 minutes ago, jimj said:Assuming you've got the files on the zip card ok you should be able to just plug it in, turn on your O2 and it loads the game selection menu.
So far I've only used the ROMs that are included in its zip file, I haven't tried loading my own ROMs yet. It's not clear to me if I need to edit the ini file manually to make new ROMs playable or if that will get built automatically.
Yes it is not necesary because the autobuild option is active by default (see user manual). If it is not active, after adding the files you have to rebuild the directory from the config menu.
In general it is not necessary to modify "gamelist.ini" in any case. This file is just to add descriptions and to assign special pagination modes.
The file is ready for all the known games.
-
2
-
-
It is currently out of stock.
I have to order parts to build more cars. It would take 30-40 days to arrive from China. If you want I can add you to the waiting list.
43 minutes ago, AdamO said:wilco2009 - I would like to purchase one with the SD.
-
4 hours ago, Airshack said:Is there a users manual online somewhere? I received mine yet it's confusing me. Six switches and I don't know what they do?
In this post there is all necessary information. http://videopac.nl/forum/index.php?topic=3291.0
-
6 hours ago, Airshack said:Interested in one.
Private sent.
-
27 minutes ago, jimj said:Don't know how I missed this on videopac.nl. I'll take one (no microSD card needed). How do I pay?
Now I am waiting for more components.
I think I will have everything in 20-30 days.
I'll let you know when I have everything ready.-
2
-
-
1 hour ago, Thunderbird98 said:Just to clarify, this does work on American O2s, right?
Yes it works in both, PAL and NTSC systems.
Ah, I forgot to say that uSD is not included in the price.
I can include it by 4€ more.
-
Hi everyone!
I still having components and boards to assembly more uSD carts if you are interested.
The price still being 45€ + shipping.
-
2
-
-
On 9/6/2020 at 12:07 PM, Rolo said:Hi wilco2009,
it‘s well documented, as far as I remember. I found schematics and a description in the internet. And I took photos. I’m quite sure, I have stored those documents on my PC. I‘m not at home at the moment, but I will have a look, when I‘m back.
I‘ll tell you.Best regards,
Rolo
It could be great.
Thanks.
-
Hi!
Do you have any kind of technical information about "the voice"?
I mean things like schematics or descriptions (at least the cartridge schematics).
-
1 hour ago, Danjovic said:I was going to suggest that or a button battery for the RAM chip.
Yes, this is the solution I think.
-
2 hours ago, Kroko said:If you have two different drivers on the databus, are you sure that the console will not get damaged ? What happens if both drivers
set different values ? Are 2600 databus drivers protected against such situations, where they have to drive the bus "against" a second
driver ?
It could be a problem in a CMOS CPU, because it uses strong "1's". In this case if you force 0V while the data line is at 0V the power will be dreaned in the data pin generating a high current with possible damages in the data pin of the processor.
The 6507 Atari's procesor uses NMOS technology. NMOS technology has strong 0's but weak 1's, then it is not dangerous to force a data pin to zero.
-
8 hours ago, batari said:I thought I might add that there *might* be a very simple, if somewhat unorthodox method that could keep the console busy without crashing.
Atari themselves designed hardware that overrode the data bus, and in doing so, maybe you could keep things running just long enough to boot your hardware. Atari did this with their Graduate add on, which they called bus stuffing, and also there is a cart out there that predates this called the Signal Tracing Cartridge which basically just throws an $EA on the data bus through a series of pullup and pulldown resistors, overriding anything that the 6507, TIA or ROIT attempts to put on the bus.
Thinking about this, though, you are asking how to reset the console from the cart port: well, you can't, but the only reason you would need to reset is if the 2600 hits a JAM instruction, which are basically the only instructions you can't recover from. These instructions have a pattern of D1=1. So technically, all you might have to do is drive D1=0 until you have some valid data to present, then issue a BRK and you could probably reliably boot the console.
Mmmmm, very interesting, seems to be easy to do. 😀
Thanks very much.
-
38 minutes ago, batari said:Another option is to write a short wait routine that runs in the console RAM until the data from the SD card is loaded. This is how the Harmony Cart handles it. With only 128 bytes you can't do much, but with creative programming you can actually display something on the screen in this little of space.
But how do you prevent the console from hanging until you copy these 128 bytes into RAM?
-
On 7/1/2020 at 11:02 PM, Kroko said:You can not let your cartridge provide random values on the databus, you need to make sure that you keep control over what is going on.
If the console shows some address on the bus, which is located in you cartridge, then you need to output something that makes sense.
You need to construct your cartridge such, that some initial ROM is presented to the console.
This can be a very simple ROM (only a few bytes). Or a very complicated one. Some cartridges provide a "menu system" ROM to the cartridge until they
finished loading the real roms. Or they let you select one of several different ROMs that the cartridge can provide. After finishing the loading or selection theyall have the same problem: to do a clean start of the ROM they loaded. This can be done by presenting a JMP ($FFFC) instruction to the console.
Starting from that moment, the real ROM must be provided at the databus and the initial ROM is switched off.
An example of a very easy initial ROM would be a reset and IRQ vector pointing to $1000. And a BRK instruction at $1000. This will result in an endless
try of the console to jump to $1000. I think these are only 5 bytes you need to provide to the console while you are waiting for your SD content to load.
After you loaded, you wait until the cartride provides $1000 at the adress bus and you provide the JMP ($FFFC) instruction instead of the BRK. Then you switch
in the real ROM. I did not try this, but maybe somebody else wrote code like this before. You can also make some endless Loop ...important is only you havecontrol over what the console is doing, while you are waiting.
Thank you very much for your explanation.
Then seems the best solution is to add a little EROM chip to the circuit to take the control until the cartridge tranfer the program to the RAM chip.
Another posibility is to send bytes to the bus from the CPLD without any kind of ROM in the cart. The main issue is the sincronization when the change to the RAM is made.
-
Hi!
I'm trying to design my own sd cartridge for the Atari 2600 console, but to read the rom from the sd card take some time, and while it is happening console is running random values in the memory, and when the memory is ready console is already hung.
Anybody knows how is possible to generate a reset in the console from the cartridge?
thanks in advance

VIDEOPAC C7420 BASIC MODULE
in Odyssey 2 / Videopac
Posted
Here there are a picture of my original cart C7420.
The look and feel is exactly the same as far I have seen, and the ROM content is also the same, except for a patch of two bytes made by Gert to implement the simulation of the tape with the SD reader.