File: RPN.help.txt

package info (click to toggle)
pythoncard 0.8.2-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,452 kB
  • sloc: python: 56,787; makefile: 56; sh: 22
file content (30 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
RPN Calc Help

Last updated: 2002-12-20

RPN Calc is a bit of a clone of the HP11 RPN calculator, with only a few functions implemented.

The calculator is stack based, as follows: X (Top), Y, Z, T (Bottom)

There are 10 memory registers: R0 - R9

Keys:
    
    +,-,/,X  - operates on X and Y, result placed in X
    
    Enter - Pushes the contents of the display onto the top of stack

    BS (Backspace) - deletes the last number entered

    1/X - returns the inverse of X

    x<>y - swaps the X and Y values

    ROT - Rotates the stack, X to T, Y to X, Z to Y, and T to Z

    RCL - returns the contents of the memory register pointed at by the value 
    of the X register (must be an integer) 

    STO - the value in the Y register is stored in the memory register pointed 
    at by the X register