Raven060 (kodak80 build)
-
PhilC
- Moderator

- Posts: 7456
- Joined: 23 Mar 2018 20:22
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.
-
kodak80
- Posts: 536
- Joined: 21 Oct 2017 01:14
- Location: Brisbane, QLD, Australia
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.
Creator of the Atari ST Review and ST Action magazine archives: https://www.chillichai.com/
-
kodak80
- Posts: 536
- Joined: 21 Oct 2017 01:14
- Location: Brisbane, QLD, Australia
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.
Creator of the Atari ST Review and ST Action magazine archives: https://www.chillichai.com/
-
kodak80
- Posts: 536
- Joined: 21 Oct 2017 01:14
- Location: Brisbane, QLD, Australia
Re: Raven060 (kodak80 build)
@JezC @PhilCPhilC wrote: 13 Oct 2025 22:48 @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
Creator of the Atari ST Review and ST Action magazine archives: https://www.chillichai.com/
-
agranlund
- Site sponsor

- Posts: 1756
- Joined: 18 Aug 2019 22:43
- Location: Sweden
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.
-
PhilC
- Moderator

- Posts: 7456
- Joined: 23 Mar 2018 20:22
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.
-
JezC
- Posts: 2787
- Joined: 28 Aug 2017 23:44
Re: Raven060 (kodak80 build)
Thanks @PhilC ... I think...?PhilC wrote: 14 Oct 2025 14:03 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).... :roll: :?
Edit : if we start planning for CL 5 early, then I for one would be interested to see the ST ATX you built!
-
exxos
- Site Admin

- Posts: 28399
- Joined: 16 Aug 2017 23:19
- Location: UK
Re: Raven060 (kodak80 build)
:dizzy:
Someone was doing a H5 ATX port but seemed to have not got completed now, can't remember who was doing it now.
-
JezC
- Posts: 2787
- Joined: 28 Aug 2017 23:44
Re: Raven060 (kodak80 build)
I'm now expecting @PhilC to suggest that as another project for me... :lol: :roll:exxos wrote: 14 Oct 2025 14:40:dizzy:
Someone was doing a H5 ATX port but seemed to have not got completed now, can't remember who was doing it now.
-
PhilC
- Moderator

- Posts: 7456
- Joined: 23 Mar 2018 20:22
Re: Raven060 (kodak80 build)
Nah @JezC I'm not recommended anything involving jumpers for you :lol:
If it ain't broke, test it to Destruction.
Who is online
Users browsing this forum: ClaudeBot and 174 guests