Mixtel90
Guru
Joined: 05/10/2019 Location: United KingdomPosts: 6834 |
Posted: 09:37am 04 Mar 2022 |
|
|
|
Ah, but you can't load data to a device with no storage medium, say a Micromite or a PicoMite (when used without a SDcard). The data has to be inline within the program - like a CSUB or an embedded font - or use DATA statements. SQLite would be of no use unless you used it on embedded data, neither would include. VAR SAVE / VAR RESTORE are ok for keeping data between runs, but store data on the local device, not as part of the program.
As Tom has pointed out previously, the CSUB mechanism works. The CSUB is part of the program and it can be PEEKed and POKEd like using a pre-loaded array. It means that CSUBs have to be supported on that platform though.
@PeterB Can you show us a bit of test code to illustrate the problem? . Edited 2022-03-04 19:41 by Mixtel90 |