Post Reply 
RAM to ROM
09-29-2024, 02:00 AM
Post: #3
RE: RAM to ROM
(09-27-2024 08:46 PM)Cold Calculator Wrote:  So my question is how do I transfer a list from RAM to ROM without doing reset?
Not at all. You can create backups to Flash, which can be seen as pseudo-ROM depending on the perspective, but it isn't really ROM.

If your calc slows down during program run, then it could be proportional to the amount of data to be managed.
Each data element to be added to the list will produce a new list in RAM,
and propably still reserve room for the old list.
So if there are thousands of elements, the amount of RAM used for new incarnations of the list will grow with big steps.
This and the needed garbage collections will take time, and thus slow down the machine.

But it could also mean that there are too many pending returns from recursions.

While recursions can be elegant from a mathematican's view,
you could try to flatten program run, by trying to eliminate some return levels.
I did this at least once in the past in a program for the HP 48, and it worked well.

There may be other causes, but those mentionned above came into my mind first.

-- Ray
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RAM to ROM - Cold Calculator - 09-27-2024, 08:46 PM
RE: RAM to ROM - glfiedler - 09-28-2024, 11:48 PM
RE: RAM to ROM - Raymond Del Tondo - 09-29-2024 02:00 AM
RE: RAM to ROM - nbc12 - 09-29-2024, 04:50 AM
RE: RAM to ROM - Cold Calculator - 10-04-2024, 01:39 PM



User(s) browsing this thread: 4 Guest(s)