WTB RPN Module for TI-59
|
09-03-2024, 06:25 PM
Post: #1
|
|||
|
|||
WTB RPN Module for TI-59
I would like to buy the RPN emulator module that TI produced for the TI-59/58/58C. If you have one to sell, contact me by PM. I will pay you with PayPal.
Namir |
|||
09-03-2024, 07:07 PM
Post: #2
|
|||
|
|||
RE: WTB RPN Module for TI-59
Back in 2005 someone asked about this and you replied:
"How about you sell your TI's and buy some HP calculators WITH SOEM REAL RPN STACKS!!!!!!!!!" https://www.hpmuseum.org/cgi-sys/cgiwrap...read=77313 8^) |
|||
09-03-2024, 11:53 PM
Post: #3
|
|||
|
|||
RE: WTB RPN Module for TI-59
:-)
Well I changed my opinion. Namir |
|||
09-04-2024, 03:59 PM
Post: #4
|
|||
|
|||
RE: WTB RPN Module for TI-59
A modern "TI-Nspire with TI-84 Plus Keypad (32-bit ARM processor emulating a Z80, 24 kB accessible RAM, 1.5 MB accessible flash, hardware clock) "
with https://github.com/bxparks/rpn83p is an alternative if you not get your request? It has a huge display, nice keyboard. Unfortunately no programming till now. HP71B 4TH/ASM/Multimod, HP41CV/X/Y & Nov64d, PILBOX, HP-IL 821.62A & 64A & 66A, Deb11 64b-PC & PI2 3 4 w/ ILPER, VIDEO80, V41 & EMU71, DM41X |
|||
09-04-2024, 04:14 PM
Post: #5
|
|||
|
|||
RE: WTB RPN Module for TI-59
(09-04-2024 03:59 PM)floppy Wrote: A modern "TI-Nspire with TI-84 Plus Keypad (32-bit ARM processor emulating a Z80, 24 kB accessible RAM, 1.5 MB accessible flash, hardware clock) " I already have many versions of the TI-Nspire calculators. Thanks for the offer anyway. Thanks for the Github link. Namir |
|||
09-04-2024, 04:50 PM
(This post was last modified: 09-04-2024 04:51 PM by Maximilian Hohmann.)
Post: #6
|
|||
|
|||
RE: WTB RPN Module for TI-59
(09-04-2024 03:59 PM)floppy Wrote: A modern "TI-Nspire with TI-84 Plus Keypad ... No, that's a completely different thing! It turns the Ti-Nspire into a "normal" RPN calculator. But the RPN simulator module for the Ti-59 (only runs on the 59 due to it's size and memory requirements) is a sort of "cross compiler" that converts programs from the HP-67, entered as opcodes, into programs for the Ti-59. These are not directly entered into memory - no space for that - but listed on the thermal printer. In a second step you have to enter the opcodes from the printed listing as a program into your Ti-59. After that, you can use that program just as you would use it on an HP-67. A nice-to-have thing for a collector but probably a nightmare to use! |
|||
09-04-2024, 10:46 PM
Post: #7
|
|||
|
|||
RE: WTB RPN Module for TI-59
(09-04-2024 04:50 PM)Maximilian Hohmann Wrote:(09-04-2024 03:59 PM)floppy Wrote: A modern "TI-Nspire with TI-84 Plus Keypad ... Thank you for explaining how that module works. I am not as enthusiastic as I was before to get the module. |
|||
09-05-2024, 02:39 AM
(This post was last modified: 09-05-2024 02:40 AM by Thomas Klemm.)
Post: #8
|
|||
|
|||
RE: WTB RPN Module for TI-59
If anybody has this module I'd be interested to see the generated result.
As an example, here is a program for the HP-67 that calculates the greatest common denominator of two numbers: Code: 001: 31 25 11 # LBL A I don't have a TI-59 but here's an analogue program for the TI-57: Code: 00 32 1 # STO 1 I just wonder how this translation even works. Is the stack implemented using registers? Does this mean that e.g. Rv is implemented using multiple register commands? Are these inlined or are subroutines called? I can imagine that correct but rather inefficient code is created. OTOH it's possible to implement an Algebraic Operation System (AOS) using the HP-41C. This simulates e.g. the TI-57 at least to some extent. |
|||
09-05-2024, 01:04 PM
Post: #9
|
|||
|
|||
RE: WTB RPN Module for TI-59
Hello!
(09-05-2024 02:39 AM)Thomas Klemm Wrote: If anybody has this module I'd be interested to see the generated result. Not the real hardware unfortunately but it is contained in the latest release of the free (!) Andriod emulator "ti5x" by Pascal Obry: https://play.google.com/store/apps/detai...ti5x&hl=en I will try your examle later in the day! I also found this reference to Don O'Grady, the programmer of the module, including an E-Mail address: https://www.ti59.com/people.htm No idea if he still can be reached under that address. Regards Max |
|||
09-05-2024, 04:15 PM
Post: #10
|
|||
|
|||
RE: WTB RPN Module for TI-59
(09-05-2024 01:04 PM)Maximilian Hohmann Wrote: I will try your example later in the day! Thank you in advance. That's very kind of you. In the meantime, I have looked at the sources of the RPN SIMULATOR. These are my findings so far. Registers The following registers are used: Code: # Primary Registers Programs The programs work with the stack registers and the display, which represents the X-register: Code: 12: A=+ B=- C=* D=/ E.g. prog51.src implements the ENTER operation: Code: lbl A So it looks like the HP-67's operations are actually simulated. I suspect that the compiled program calls the appropriate subroutines. |
|||
09-05-2024, 05:15 PM
Post: #11
|
|||
|
|||
RE: WTB RPN Module for TI-59
This manual might be useful: RPN Simulator
|
|||
09-05-2024, 05:30 PM
Post: #12
|
|||
|
|||
RE: WTB RPN Module for TI-59
Hello!
(09-05-2024 04:15 PM)Thomas Klemm Wrote: Thank you in advance. You are welcome - but unfortunately no luck. The module does not work with the current version of ti5x on Android. I tried everything according to the manual but could not get it to work. There are several other emulators and simulators of the Ti-59 for various platforms, but I have not found another one that comes with module number 13. Regards Max |
|||
09-06-2024, 06:37 AM
Post: #13
|
|||
|
|||
RE: WTB RPN Module for TI-59
Never mind.
The manual contains an example of a translation. (09-05-2024 05:30 PM)Maximilian Hohmann Wrote: The module does not work with the current version of ti5x on Android. You might want to contact the author: Pascal Obry |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)