Page 1 of 1

appmake and custom basic additions

Posted: Sat Oct 27, 2018 6:48 pm
by tschak909
Is it possible to have a little extra chunk of BASIC output with the output of the Appmake tap header?

I am experimenting making a custom loader that needs to change a variable and pass it back into BASIC to load something from Spectranet...

-Thom

Posted: Sun Oct 28, 2018 10:40 am
by dom
There's two ways to do it:

-Cz-noheader

This will just create a file with the binary in it. You can then prepend your custom BASIC file in .TAP format

-Cz-merge=XXXX

This will prepend the .TAP BASIC loader in the file XXXX and the output will have your custom loader and the binary file.

If you want to get fancy, there's also -Cz--screen=XXXX which will add the raw 6912 byte file XXXX as a loading screen.

Posted: Sun Oct 28, 2018 3:29 pm
by tschak909
Oh yeah, I plopped in a loading screen for the RS232 versions of PLATOTerm. :) Thanks for that.

Image

-Thom