Re: [hatari-devel] Order of startup parameters |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
Le 12/11/2024 à 16:39, Miro Kropáček a écrit :
Hi,
I have noticed a minor issue while running Hatari: --machine must be
specified before --cpuclock and --fpu otherwise they revert to their
default values. In my case I had --machine falcon after --cpuclock and
--fpu and they were set to 16 MHz and "No FPU" respectively. I guess
it's because "falcon" forces Hatari to have 68030@16 MHz by default.
Hi
I don't remember if it's written in the doc, but IIRC parameters are
parsed from left to right and applied above the previous one if already
present.
so
--cpuclock 8 --cpuclock 32 --cpuclock 16
will in the end select 16 MHz cpu clock
as --machine implies setting cpu clock, this explains what you saw.
Nicolas