Notice. New forum software under development. It's going to miss a few functions and look a bit ugly for a while, but I'm working on it full time now as the old forum was too unstable. Couple days, all good. If you notice any issues, please contact me.
capsikin Guru Joined: 30/06/2020 Location: AustraliaPosts: 342
Posted: 01:59am 24 Jul 2020
Copy link to clipboard
Print this post
I don't know that I can help further but I did want to check - are you using an old Colour Maximite (version 1), or one of the new Colour Maximite 2's?
The game was for the original version Colour Maximite, which I'm not so familiar with.
jincamty Newbie Joined: 10/07/2011 Location: New ZealandPosts: 21
Posted: 02:19am 24 Jul 2020
Copy link to clipboard
Print this post
I'm using a surplus CGCOLORMAX2.
The game starts okay but them comes up with a statement,
The instructions at the beginning of the code says,
'copy audio effects modules to a: 'modules names are 'Laser1.mod 'Inv_Exp.mod
How do I copy to a: ?
Cheers Cam.
BrianP Senior Member Joined: 30/03/2017 Location: AustraliaPosts: 292
Posted: 04:31am 24 Jul 2020
Copy link to clipboard
Print this post
For the original Maximites:
Drive b: is the default (the SD card which may or may not be present).
Drive a: is the internal flash drive accessed at boot time for "autorun.bas" (if present) to autoload & run a program
to access drive a: - enter "drive a:" (without the quotes). a: is now the accessible drive for saving to.
Cheers
Brian Edited 2020-07-24 14:36 by BrianP
jincamty Newbie Joined: 10/07/2011 Location: New ZealandPosts: 21
Posted: 11:35pm 24 Jul 2020
Copy link to clipboard
Print this post
Thanks Brian,
You over estimate my level of understanding. :-)
How do I get a file from the SD card to the internal flash drive A:?
I can see the files on the screen from the SD card after typing 'FILES' but I need to transfer two of them to drive A. (I think?)
Cheers Cam.
capsikin Guru Joined: 30/06/2020 Location: AustraliaPosts: 342
Posted: 11:56pm 24 Jul 2020
Copy link to clipboard
Print this post
I don't know about the full screen editor but if you can run BASIC commands I'm guessing that if you run these two from Turbo46's post:
Copy "Laser1.MOD" To "A:Laser1.MOD" Copy "Inv_Exp.MOD" To "A:Inv_Exp.MOD"
that could copy them (not sure if you also need to somehow specify that the originals are on the SD card and not drive A)
jincamty Newbie Joined: 10/07/2011 Location: New ZealandPosts: 21
Posted: 12:11am 25 Jul 2020
Copy link to clipboard
Print this post
Oustanding, thank you.
I really need a basic lesson in basic.
Cheers Cam.
JohnS Guru Joined: 18/11/2011 Location: United KingdomPosts: 4139
Posted: 06:40am 25 Jul 2020
Copy link to clipboard
Print this post
Although it's in the manual (from https://geoffg.net/MonoMaximite.html or the like) I suppose it's not entirely obvious what is / isn't allowed in src$ and dest$
They can be variables (as their names show) or explicit strings (or a mix), e.g. COPY "myfile" TO "B:"
should work. (I don't have a maximite plugged in to check.)