Has anyone been able to get the AROS ROM running on MiSTer, given the ROM is larger than any kickstart.
Searching online there was work done for the original Mist to support larger ROMs (like the extension ROM option in WinUAE I guess) but I've drawn a blank since.
Running 68k AROS on MiSTer?
-
- Posts: 180
- Joined: Sun May 24, 2020 9:13 pm
- Has thanked: 186 times
- Been thanked: 34 times
- douglasamcintosh
- Posts: 35
- Joined: Sun Jul 12, 2020 12:40 pm
- Has thanked: 19 times
Re: Running 68k AROS on MiSTer?
I was looking at trying this recently but could not even get it to run in WinUAE. I thought the m68k backport was designed to run with the normal Kickstart. Did I misread?
Re: Running 68k AROS on MiSTer?
You find everything there is to know about Kickstart size support in the file
https://github.com/MiSTer-devel/Main_Mi ... config.cpp
and function UploadKickstart.
https://github.com/MiSTer-devel/Main_Mi ... config.cpp
and function UploadKickstart.
Re: Running 68k AROS on MiSTer?
AROS ROM should work on minimig, at least for floppy images. What probably doesn't work is HDD support - there are some issues with IDE implementation, or maybe just AROS incompatibility. Will be fixed sometime.
-
- Posts: 180
- Joined: Sun May 24, 2020 9:13 pm
- Has thanked: 186 times
- Been thanked: 34 times
Re: Running 68k AROS on MiSTer?
Thanks for this!R4M wrote: ↑Sat Nov 07, 2020 6:14 pm You find everything there is to know about Kickstart size support in the file
https://github.com/MiSTer-devel/Main_Mi ... config.cpp
and function UploadKickstart.
So it wasn't working for me because I was concatenating aros-bin.rom and aros-ext.rom with copy /b aros-bin.rom+aros-ext.rom, leading to the bin.rom being loaded to $e0 and the ext.rom being loaded to $f8 (the wrong way around). Looking at the code, the main rom should load to $f8 by default, so I was loading the ROMs the wrong way around.
One
Code: Select all
copy /B aros-ext.rom+aros-bin.rom kick.rom