HP-41 Extended Memory data to card?
|
09-28-2016, 06:14 PM
Post: #1
|
|||
|
|||
HP-41 Extended Memory data to card?
I have a program that I regularly use which stores data to Extended Memory. I would like to be able to store that data on cards with the card reader. The data files are from a little less than 32 registers up to 56 registers, so each file would fit on one or two cards at 32 registers per card.
I know the normal process would be to save a complete X-memory data file to a block of main memory and then write that block onto cards with the card reader. It seems to me that a program could be written that copies 16 registers at a time to main memory, to read or write a single card track, and then use the same 16 registers for the next chunk of the data file. This would save dedicating a large part of main memory solely to transfer a whole data file to cards. Since I've thought of this, that means someone else has in the last 25 or so years since the 41 was state of the art. At the present time the only "mass storage" devices available to me are the card reader and 2 impractical X-memory to barcode utilities I wrote for an earlier project. I know there are better choices like using a PIL-Box, but I'm still leaving the '80s kicking and screaming. Before I dedicate time to reinventing the wheel, is such a program documented somewhere on the web? Steve In order of appearance: HP 41CV, CMT-MCGPS, HP 41CX, DM 41, DM 42 |
|||
09-28-2016, 08:28 PM
(This post was last modified: 09-28-2016 08:49 PM by Dieter.)
Post: #2
|
|||
|
|||
RE: HP-41 Extended Memory data to card?
(09-28-2016 06:14 PM)4ster Wrote: I know the normal process would be to save a complete X-memory data file to a block of main memory and then write that block onto cards with the card reader. It seems to me that a program could be written that copies 16 registers at a time to main memory, to read or write a single card track, and then use the same 16 registers for the next chunk of the data file. This would save dedicating a large part of main memory solely to transfer a whole data file to cards. Sure. But that's so trivial that I don't think you need a program for this. Let's assume your data is stored in an X-Memory file named "DATA". Code: "DATA" 0 SEEKPTA // make "DATA" current file, reset pointer The last round probably will cause an END OF FL error as there are no further 16 values left in the file that could be read. In this case get the last data this way: Code: FLSIZE RCLPT - // number of remaining data in file Of course you can also write a short program that does this for you. Simply use a flag 25 test for the last chunk of data. And be sure that the last control number is greater than zero. ;-) Edit: for instance this way... Code: 01 LBL "XM2CRD" Beware: I have not tried this on a real 41 / X-Mem / card reader combo. Try it and see if it works for you. Dieter |
|||
09-29-2016, 04:44 AM
Post: #3
|
|||
|
|||
RE: HP-41 Extended Memory data to card?
Wow, that was fast! Thanks for taking the time to write the program! The only thing that could improve it is a few CLAs randomly spaced in the program. ;-)
I ran it on two files. The first contained 48 registers and it ran 3 tracks as expected. afterwards I I checked register 15 in main memory and it contained the last record of the file. The other was 56 registers and it ran the expected 4 tracks on 2 cards. It is a neat little program. Steve In order of appearance: HP 41CV, CMT-MCGPS, HP 41CX, DM 41, DM 42 |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)