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
Check if your IP is banned
viewtopic.php?t=7286
viewtopic.php?t=7286
WIP Atari ST ScummVM-lite
Re: WIP Atari ST ScummVM-lite
I've got a stock Falcon (bar the 14Meg Ram upgrade) - internal IDE drive has died but external SCSI working well still...
Can't find my Falcon to ST monitor adaptor but do have a VGA one handy.
Can't find my Falcon to ST monitor adaptor but do have a VGA one handy.
- stephen_usher
- Site sponsor
- Posts: 6771
- Joined: Mon Nov 13, 2017 7:19 pm
- Location: Oxford, UK.
- Contact:
Re: WIP Atari ST ScummVM-lite
I've a stock (well, extra memory and USB ports) TT.agranlund wrote: Mon Apr 20, 2020 10:16 pm Does anyone here have a TT or stock Falcon?
I'd be interested in knowing if it runs on these machines... appears to work in Hatari but I'm not sure how accurate that emulator is.
(Sending you a PM Atarian Computing, but I'd be willing to bet it's not going to display on that Mach64.
It sets ST-Low resolution and grabs the screen pointer from TOS, and I assume that's a bad idea for machines with gfx card? I don't have any experience with gfx-card equipped Ataris)
Intro retro computers since before they were retro...
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
-
- Posts: 467
- Joined: Tue Aug 22, 2017 4:27 am
Re: WIP Atari ST ScummVM-lite
Thanks! Glad to report it seems to run smooth on the TT! Holy crap man, well friggin done!agranlund wrote: Mon Apr 20, 2020 10:16 pm Does anyone here have a TT or stock Falcon?
I'd be interested in knowing if it runs on these machines... appears to work in Hatari but I'm not sure how accurate that emulator is.
(Sending you a PM Atarian Computing, but I'd be willing to bet it's not going to display on that Mach64.
It sets ST-Low resolution and grabs the screen pointer from TOS, and I assume that's a bad idea for machines with gfx card? I don't have any experience with gfx-card equipped Ataris)
I tried Atlantis and Tentacle and everything was super responsive. I didn't try the VME gfx as it most likely wouldn't work. I was lazy and ran from USB-drive and used a USB mouse. No issues. I didn't get a chance to try too long but I did move around, looked at stuff, picked stuff. Sounds worked. I'll test more later.
Now to get DMA sound and TT-colours

Thanks again for this.
Re: WIP Atari ST ScummVM-lite
I've downloaded the alpha ready to try on my Falcon this evening - will post an update later today (hopefully)
The anticipation is making this working from home even more tedious than normal...

The anticipation is making this working from home even more tedious than normal...

- stephen_usher
- Site sponsor
- Posts: 6771
- Joined: Mon Nov 13, 2017 7:19 pm
- Location: Oxford, UK.
- Contact:
Re: WIP Atari ST ScummVM-lite
I've just downloaded "Day of the Tentacle" and your files.
Works wonderfully, just a bit of audio distortion and maybe delays due to audio decoding.
I notice that the executable doesn't have the header information to allow it to be tagged to go into TTRAM.
Works wonderfully, just a bit of audio distortion and maybe delays due to audio decoding.
I notice that the executable doesn't have the header information to allow it to be tagged to go into TTRAM.
Intro retro computers since before they were retro...
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
Re: WIP Atari ST ScummVM-lite
This is really interesting! All three flags are set here (fast-load, run-from & allocate-from) and I can tell from the debugger that it is indeed executing in TTRAM -- this is on my ST though so I wonder if there is some additional difference between my system and a real TT making this happen.stephen_usher wrote: Tue Apr 21, 2020 8:32 am I've just downloaded "Day of the Tentacle" and your files.
Works wonderfully, just a bit of audio distortion and maybe delays due to audio decoding.
I notice that the executable doesn't have the header information to allow it to be tagged to go into TTRAM.
Can you set/check flags natively in TOS for the TT or do you also use 3'rd party apps for this like me on the ST?
I just double checked here using the SETFLAGS.APP by Uwe Seimet, as well as the CHNGFLAG.CPX control panel extension and they both report fload,lalt,malt flags being set.
I will try to investigate this, maybe I need to specify something at build time.. I want the app to go into fastram on all systems by default of course.
For now you could just tag it manually I suppose because it's going to be more happy with fast-ram compared to st-ram:)
Thank you so much for testing it, I'm really happy that it starts and runs on real TT hardware!
- thorsten.otto
- Posts: 148
- Joined: Mon Nov 04, 2019 2:20 am
Re: WIP Atari ST ScummVM-lite
That should be the default both for Pure-C and gcc. What compiler are you using?agranlund wrote: Tue Apr 21, 2020 10:15 am All three flags are set here (fast-load, run-from & allocate-from)
Re: WIP Atari ST ScummVM-lite
I'm using gcc 4.6.4thorsten.otto wrote: Tue Apr 21, 2020 10:54 amThat should be the default both for Pure-C and gcc. What compiler are you using?agranlund wrote: Tue Apr 21, 2020 10:15 am All three flags are set here (fast-load, run-from & allocate-from)
- stephen_usher
- Site sponsor
- Posts: 6771
- Joined: Mon Nov 13, 2017 7:19 pm
- Location: Oxford, UK.
- Contact:
Re: WIP Atari ST ScummVM-lite
OK, weird... When I try to look at the flags using the CPX I usually use all the flag options are greyed out.agranlund wrote: Tue Apr 21, 2020 10:15 am This is really interesting! All three flags are set here (fast-load, run-from & allocate-from) and I can tell from the debugger that it is indeed executing in TTRAM -- this is on my ST though so I wonder if there is some additional difference between my system and a real TT making this happen.
Can you set/check flags natively in TOS for the TT or do you also use 3'rd party apps for this like me on the ST?
I just double checked here using the SETFLAGS.APP by Uwe Seimet, as well as the CHNGFLAG.CPX control panel extension and they both report fload,lalt,malt flags being set.
I will try to investigate this, maybe I need to specify something at build time.. I want the app to go into fastram on all systems by default of course.
For now you could just tag it manually I suppose because it's going to be more happy with fast-ram compared to st-ram:)
Thank you so much for testing it, I'm really happy that it starts and runs on real TT hardware!
Intro retro computers since before they were retro...
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
ZX81->Spectrum->Memotech MTX->Sinclair QL->520STM->BBC Micro->TT030->PCs & Sun Workstations.
Added code to the MiNT kernel (still there the last time I checked) + put together MiNTOS.
Collection now with added Macs, Amigas, Suns and Acorns.
-
- Admin sponsor
- Posts: 5637
- Joined: Mon Aug 28, 2017 10:56 pm
- Location: Glasgow, UK
Re: WIP Atari ST ScummVM-lite
Guybrush can hold his breath for 10 minutes

———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."