Post Reply 
41C X-Mem data file editor?
10-21-2020, 07:56 PM (This post was last modified: 10-21-2020 08:06 PM by Garth Wilson.)
Post: #6
RE: 41C X-Mem data file editor?
This is mine, written in the late 1980's. I don't remember why I called it "VV", but it has always been easy for me to remember. Call yours EDD if you like.

Code:
♦LBL "VV"
 "FL _"
 AON
 PROMPT
 AOFF
 CLX
 SEEKPTA

♦LBL 01
 "REG #_"      \ For the # chr with ZENROM in ALPHA mode, do USER shift SIN .
 PROMPT        \ To get the _ chr with ZENROM in ALPHA mode, do USER - .
 SEEKPT
 "STO OR RCL?"
 AVIEW

♦LBL 00
 GETKEY        \ GETKEY gives 10 seconds.  If no key is pressed, it returns 0,
 GTO IND X     \ so this part of the program just repeats to ask again.

♦LBL 33        \ 33 is the key code of the STO key.
 "NR _"
 PROMPT
 SAVEX
 "DONE"
 PROMPT
 GTO 01

♦LBL 34        \ 34 is the key code of the RCL key.
 GETX
 VIEW X
 RTN

 GTO 01
 END

http://WilsonMinesCo.com (Lots of HP-41 links at the bottom of the links page, http://wilsonminesco.com/links.html )
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
41C X-Mem data file editor? - Dave Britten - 10-21-2020, 02:13 PM
RE: 41C X-Mem data file editor? - hth - 10-21-2020, 06:14 PM
RE: 41C X-Mem data file editor? - Garth Wilson - 10-21-2020 07:56 PM



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