You will not be able to post if you are still using Microsoft email addresses such as Hotmail etc
See here for more information viewtopic.php?f=20&t=7296
See here for more information viewtopic.php?f=20&t=7296
DO NOT USE MOBILE / CGNAT DEVICES WHERE THE IP CHANGES CONSTANTLY!
At this time, it is unfortunately not possible to whitelist users when your IP changes constantly.
You may inadvertently get banned because a previous attack may have used the IP you are now on.
So I suggest people only use fixed IP address devices until I can think of a solution for this problem!
At this time, it is unfortunately not possible to whitelist users when your IP changes constantly.
You may inadvertently get banned because a previous attack may have used the IP you are now on.
So I suggest people only use fixed IP address devices until I can think of a solution for this problem!
Raven060 (kodak80 build)
Re: Raven060 (kodak80 build)
@kodak80 Nice compact card that. Be good to see what results you get with it
If it ain't broke, test it to Destruction.
Re: Raven060 (kodak80 build)
Raven board #1 is now being cased. White one for #1 and #2 is already in a back case.
Also updated, all chips to the latest release in preparation for testing video card.
Also updated, all chips to the latest release in preparation for testing video card.
Raven060 | Atari Falcon 030 | Atari 1040 STE | Atari 1040 STFM | Atari 1040 STF | Kryoflux & Supercard Pro Flux boards
Creator of the Atari ST Review magazine archive: https://www.chillichai.com/atari-st-review
Creator of the Atari ST Review magazine archive: https://www.chillichai.com/atari-st-review
Re: Raven060 (kodak80 build)
I updated Raven #1 with latest firmwares to allow me to start testing some Cirrus video cards I purchased but it currently freezes after a couple of minutes use, regardless of which video card I am using, I switched back to an ET4000AX and it still freezing.
This raven was running an LC CPU and I purchased a full 68060 CPU which seemed to be when the freezing started. I switched back to the LC CPU thinking it was the new CPU which was faulty but after sending the CPU back to the seller, found that the system is still freezing.
I have not had time to diagnose it further to figure out if it is the newer firmware or something hardware wise has gone faulty. Could the new CPU have damaged something?
At least Raven #2 is working. Just need to find a permanent place in my room to set it up now it is cased.
This raven was running an LC CPU and I purchased a full 68060 CPU which seemed to be when the freezing started. I switched back to the LC CPU thinking it was the new CPU which was faulty but after sending the CPU back to the seller, found that the system is still freezing.
I have not had time to diagnose it further to figure out if it is the newer firmware or something hardware wise has gone faulty. Could the new CPU have damaged something?
At least Raven #2 is working. Just need to find a permanent place in my room to set it up now it is cased.
Raven060 | Atari Falcon 030 | Atari 1040 STE | Atari 1040 STFM | Atari 1040 STF | Kryoflux & Supercard Pro Flux boards
Creator of the Atari ST Review magazine archive: https://www.chillichai.com/atari-st-review
Creator of the Atari ST Review magazine archive: https://www.chillichai.com/atari-st-review
Re: Raven060 (kodak80 build)
@JezC @PhilCPhilC wrote: Mon Oct 13, 2025 10:48 pm @JezC I thought @kodak80 had made an ISA cart port board? It would just be a case of adding support for it on the Raven.
Moving this from the MC68060 post.
Yes, the ISA cartridge PCB I designed for the MicroATX ISA slot so may be able to work with the Raven. In the MicroATX the board needed ROM3 and ROM4 from the GLUE chip. Without a GLUE in the Raven we would need to be manually generate these which was mentioned here: https://atari-forum.com/posting.php?mod ... 0f69fdc20d by Arne
Here is what was advised:
ROM3 & ROM4 can be generated from /AS, R/W and the upper 8 bit of the address bus
Code: Select all
/ROM3 := /AS & A23 & A22 & A21 & A20 & A19 & /A18 & A17 & A16 & RW
/ROM4 := /AS & A23 & A22 & A21 & A20 & A19 & /A18 & A17 & /A16 & RW;We would need some additional hardware (e.g. GAL, CPLD, or discrete logic), with:
- Inverters
- AND gates to combine the signals
- Possibly a programmable logic device (like GAL16V8 or ATF22V10) for compactness
Raven060 | Atari Falcon 030 | Atari 1040 STE | Atari 1040 STFM | Atari 1040 STF | Kryoflux & Supercard Pro Flux boards
Creator of the Atari ST Review magazine archive: https://www.chillichai.com/atari-st-review
Creator of the Atari ST Review magazine archive: https://www.chillichai.com/atari-st-review
Re: Raven060 (kodak80 build)
This is not at all thought through properly, just thinking out loud 
But we can steer the logical cartridge address range to an ISA-MEM access with the PMMU.
Would "just" need to avoid that the (isa-space) range isn't colliding with what a graphics card may think belongs to it.
Possibly by A0-A19 being lower than $A0000, and then also some quite high address bit(s) being set to put it out of the way of potential linear framebuffers.
Something like
Ax signals TBD, perhaps at ISA space 8MB or something like that.
(cpu) 0xFA0000 -> (isa) 0x800000
(cpu) 0xFB0000 -> (isa) 0x810000
The card would need some logic, similar to a normal ISA card, to decide if the access is for it. And then also to generate some of the signals for the cartridge port.
But we can steer the logical cartridge address range to an ISA-MEM access with the PMMU.
Would "just" need to avoid that the (isa-space) range isn't colliding with what a graphics card may think belongs to it.
Possibly by A0-A19 being lower than $A0000, and then also some quite high address bit(s) being set to put it out of the way of potential linear framebuffers.
Something like
Code: Select all
ISA Cart
A0-A15 A0-A15
A16 Rom3/4 select
Ax Cart select
D0-D7 D8-D15
D8-D15 D0-D7
(cpu) 0xFA0000 -> (isa) 0x800000
(cpu) 0xFB0000 -> (isa) 0x810000
The card would need some logic, similar to a normal ISA card, to decide if the access is for it. And then also to generate some of the signals for the cartridge port.
Re: Raven060 (kodak80 build)
Cool, sounds like a possibility then, @JezC There you go, build yourself a Raven and you've already got yourself a little project 
If it ain't broke, test it to Destruction.
Re: Raven060 (kodak80 build)
Thanks @PhilC ... I think...?PhilC wrote: Tue Oct 14, 2025 2:03 pm Cool, sounds like a possibility then, @JezC There you go, build yourself a Raven and you've already got yourself a little project![]()
I could maybe start planning to do this in early 2027 (and then actually start on it before the end of 2028)....
Edit : if we start planning for CL 5 early, then I for one would be interested to see the ST ATX you built!
Re: Raven060 (kodak80 build)
Someone was doing a H5 ATX port but seemed to have not got completed now, can't remember who was doing it now.JezC wrote: Tue Oct 14, 2025 2:30 pm then I for one would be interested to see the ST ATX you built!
Re: Raven060 (kodak80 build)
I'm now expecting @PhilC to suggest that as another project for me...
Re: Raven060 (kodak80 build)
Nah @JezC I'm not recommended anything involving jumpers for you 
If it ain't broke, test it to Destruction.


