Re: CT63 only starts from 030 mode
Posted: 28 Sep 2022 21:38
I think you need NVDI for it to be stable. Took me years to find that out :roll:
We welcome retro users & hardware gurus alike! Come and join the party :)
https://www.exxosforum.co.uk/forum/
Thanks, that is actually one of the two things that was in my auto folder crashing it. I guess it's the other one then :lol:exxos wrote: 28 Sep 2022 21:38 I think you need NVDI for it to be stable. Took me years to find that out :roll:
I had this before sorting out the NVRAM. Perhaps reset your nvram (with the diagnostics cart - built-in).coonsgm wrote: 28 Sep 2022 22:25 Can you switch to resolutions other than 40 column double line on without it crashing?
I can boot kind of stably into TOS and run some software in that low res mode (also turning off Auto). I'm just glad I'm starting to see some progress.
That will be a cookie problem.
Code: Select all
IF GETCOOKIE("_CPU",cpu&) THEN 'we found a cookie yum.
if cpu&=0 then GET_CPU$="68000"
if cpu&=10 then GET_CPU$="68010"
if cpu&=20 then GET_CPU$="68020"
if cpu&=30 then GET_CPU$="68030"
if cpu&=40 then GET_CPU$="68040"
if cpu&=60 then GET_CPU$="68060"
else
'no cookie so assume 68000
GET_CPU$="68000"
end ifCode: Select all
IF GETCOOKIE("_MCH",mch&) THEN 'we found a cookie yum.
if mch&=&h00000 then GET_MCH$="ST" : f=1
if mch&=&h10000 then GET_MCH$="STE" : f=1
if mch&=&h10010 then GET_MCH$="MSTE" : f=1
if mch&=&h20000 then GET_MCH$="TT/HADES" : f=1
if mch&=&h24D34 then GET_MCH$="MEDUSA T40" : f=1
if mch&=&h30000 then GET_MCH$="Falcon" : f=1
if mch&=&h40000 then GET_MCH$="Milan" : f=1
if mch&=&h50000 then GET_MCH$="Emulator :(" : f=1
if mch&=&h60000 then GET_MCH$="CT60" : f=1
if mch&=-1 then GET_MCH$="NON-ATARI" : f=1
if f=0 then GET_MCH$="UNKNOWN ST"
ELSE
'no cookie booo
GET_MCH$="ST"
end ifI put my CT60 page back up. I went through pure hell with the thing. There is a copy of NVDI which should be working fine. I think there is also bizarre patched versions of the control panel which could be screwing you up as well.foft wrote: 28 Sep 2022 22:06 Thanks, that is actually one of the two things that was in my auto folder crashing it. I guess it's the other one then :lol: