How would I transfer a file from the Emu-50g to my PC? I would like
to print out my code in ASCII format.
Thanks,
Mark
> How would I transfer a file from the Emu-50g to my PC?
> I would like to print out my code in ASCII format.
See the second short program at
"Ascii Import/Export for SD card and Emulator"
http://groups.google.com/group/comp.sys.hp48/msg/4e7ed90b3cf11c42
(also copied below)
More about its rationale:
http://groups.google.com/group/comp.sys.hp48/msg/111c7cf4caacb0f8
Once you have "ascii" text (a string) on the stack,
you can use the emulator's "Edit" | "Copy Stack"
then "paste" into any text editor, such as Notepad.
Another approach is to directly save into a file
via "Edit" | "Save Object" -- in this case, however,
you will still later have to remove or ignore
13 leading binary characters, if you want just pure text.
If you have an entire directory (other than HOME)
of UserRPL programs and/or data,
you can recall the entire directory as a single object,
which reduces the number of "exports" down to one.
---
@ Calc object -> 7-bit ascii string
@ on any HP48/49/50 real calc or emulator
\<< STD 64 STWS \->STR 3 TRANSIO RCLF SIZE 3 >
#2F34Fh #2FEC9h IFTE SYSEVAL \>> 'OUT' STO
Make a memory backup, of course, before using the above!
(the exact binary addresses are very critical)
[r->] [OFF]