Re: A89: util library problems
[Prev][Next][Index][Thread]
Re: A89: util library problems
>l've never tried this, but l'm positive that it would work. if you have games
>on your calc in which some require the old libs and some the new, then do
>this:
>-Create two new folders: one called oldlibs , the other called newlibs .
>-Get both versions of libraries.
>-Send the new libraries to both the main folder and the newlibs folder (you
>will have to send twice).
>-Send the old libraries to the oldlibs folder.
>When running a game that needs the old libraries, copy and overwrite the
>libraries from the oldlibs folder to the main folder.
>Do the same with the new libraries when playing a game that requires them.
You could even script this by running the asm programs that use the old
libraries from within another file.
This would be to run a program using the old libraries, moving them into
main, and them back when done:
:MoveVar <someNewLib>, main, newlibs
:MoveVar <someOldLib>, oldlibs, main
:<someOldLibPrgm>()
:MoveVar <someOldLib>, main, oldlibs
:MoveVar <someNewLib>, newlibs, main
--Nate
References: