GO-25
SciRPN
Programmable Scientific Calculator

GO-25 SciRPN closely simulates the venerable HP-25C Programmable Pocket Scientific Calculator. The HP-25C was released in 1976 and sold for a MSRP of $195. Virtually indistinguishable from the real item in operation, GO-25 was created in 2010 as a powerful yet simple programmable retro calculator.

Topics

Prologue

1.  Capabilities At A Glance

Top

2.  Introduction

Use the OFF - ON switch and ensure the calculator is powered-on.

This document — also available as a PDF download GO-25 Help — is not an exhaustive reference manual; rather, it's a terse outline of the calculator's operation, and function and programming keys. The information is structured so that prerequisite material generally comes first, thus, you are encouraged to read the topics sequentially.

In this document normal calculator keys are shown in bold, such as +, or x, or 4, or g. Most keys can perform two other functions, however, one labeled in blue and and one labeled in gold. To execute one of these functions you first touch the corresponding colored prefix key, either g or f, followed by the desired function key.

So to compute the sine of a number you'd touch two keys, the f prefix key followed by the 4 key. However, this document will simply show the key as sin: the font color implies which prefix character is used. Similarly, touching the two keys g and 4 executes the inverse sine function sin-1. The only exception to this convention is when discussing programming and keycodes.

The PRGM - RUN switch controls the two basic calculator modes. In RUN mode, key presses are executed immediately and results shown in the calculator display area. In PRGM mode, key presses are stored in program memory for later execution. It's important to realize which mode the calculator is in, as it has ramifications that affect other operational characteristics of the device.

(As described later there are two variants of RUN mode, for three actual calculator modes.)

Top

3.  Manual Problem Solving

To get the feel of your new calculator, try a few simple calculations. First, perform these operations:

To calculate the surface area of a sphere, the formula `A_(surface)=pid^2` can be used, where d is the diameter of the sphere. Ganymede, one of Jupiter's 12 moons, has a diameter of 3,200 miles. You can use the calculator to manually compute the area of Ganymede in square miles. Merely press the following keys in order:

PressDisplay
32003200.
!10240000.00
%3.14
?32169908.77

Top

4.  Programmed Problem Solving

After calculating the surface area of Ganymede, one of Jupiter's 12 moons, suppose you decided you wanted the surface area of each moon. You could repeat the procedure you used for Ganymede 12 times, using a different diameter d each time; however, an easier and faster method is to create a program that will calculate the surface area of any sphere from its diameter rather than pressing all the keys for each moon.

To calculate the area of a sphere using a program, you should first write the program, then you must load the program into the calculator, and finally you run the program to calculate each answer.

Top

Part I - Manual Usage

5.  Controlling the LED Display

The GO-25 LED window acts as a display area, as well as a touch sensitive input area that initiates further activities not available on an actual HP-25C. The calculator display is also modal, so what it displays and how it reacts to touches depends on the setting of the PRGM - RUN switch.

A similar concept exists for Apple TV, based on focus navigation rather than touch, see section Apple TV Particulars for details.

Top

6.  Stack Operations

Automatic storage of intermediate results is the reason that GO-25 slides so easily through the most complex equations. The displayed X register, which is the only visible register in the calculator display, is one of four registers inside the calculator that are positioned to form the automatic memory stack. We label these registers X, Y, Z, and T. They are "stacked" one on top of the other with the displayed X register on the bottom and T at the top.

T

4.00

Z

3.00

Y

2.00

X

1.00

Automatic Memory Stack

Top

7.  Storage Registers

In addition to the automatic storage of intermediate results that is provided by the four-register automatic memory stack, the calculator also has 10 addressable data storage registers that are unaffected by operations within the stack. These storage registers allow you to manually store and recall constants or to set aside numbers for use in later calculations. Like all functions, you can use these storage registers either from the keyboard or as part of a program. All 10 storage registers reside contiguously in Continuous Memory and maintain their contents even when the calculator is off.

The diagram below shows all storage registers. The addresses of the primary storage registers are indicated by the numbers 0 through 9.

Primary

R₀

R₁

R₂

R₃

R₄

R₅

R₆

R₇

R₈

R₉

Storage Registers

Top

8.  Auxiliary Information Views

GO-25 provides two distinct, scrollable, views of the calculator's internal state unavailable on the real hardware. This makes using the calculator, and programming and debugging code much easier. Access to this additional information is controlled by a double tap on the calculator display. If the information view is visible, a double tap hides the view. If the view is not visible, the information view appears. So a double tap toggles the visibility of the auxiliary information. If you eschew gestures and prefer buttons, enable the Accessibility setting Auxiliary Views Assist.

Similar to long-pressing the calculator display, the information that's displayed in response to a double tap is dependent on the setting of the PRGM - RUN switch.

(Note: unlike for iPhone and iPod touch, which have tiny screens, on Mac and iPad both information views are by default always visible, but you can hide them with two double taps, if desired, one in PRGM mode and one in RUN mode. For Apple TV the information views are always visible and cannot be hidden.)

Both auxiliary information views include this touch point that toggles what the view shows, detailed in the following two sections.

Top

9.  Function Keys

Top

Part II - Programmatic Usage

10.  Three Modes Of Operation

There are three ways to use your GO-25 calculator:

  1. Manual RUN Mode

    The functions and operations you have learned about in previous sections are performed manually one at a time with the PRGM - RUN switch set to RUN. These functions combined with the automatic register stack enable you to calculate any problem with ease.

  2. PRGM Mode

    In PRGM mode the functions and operations you have learned about are not executed, but instead are recorded in a part of the calculator called program memory for later execution. All operations on the keyboard except three can be recorded for later execution with the PRGM - RUN switch set to PRGM. The three operations that cannot be recorded are:

    • q
    • w
    • CLEAR PRGM

    These three operations work in PRGM mode to help you write and record your programs.

  3. Automatic RUN Mode

    GO-25 can also be used to automatically execute a list of operations with the PRGM - RUN switch set to RUN if they have previously been recorded in program memory. Instead of your having to press each key manually, the recorded operations are executed sequentially in automatic RUN mode when you press R/S (run /stop). You press only one key and the entire list of recorded operations is executed much more quickly than you could have executed them yourself.

Top

11.  Program Memory

A program is nothing more than a series of calculator keystrokes that you would press to solve a problem manually. The calculator remembers these keystrokes when you key them in, then executes them, in order, whenever you wish. You've already seen this demonstrated in the section Programmed Problem Solving, which you may wish to review.

All HP-25C programming techniques work with GO-25, although this App has some useful extensions. The first is the amount of program memory available for storing the keystrokes that define your program, now increased to 99 steps. When you set the calculator to PRGM mode you can examine the contents of program memory; logically, here is how the surface area program `A_(surface)=pid^2` is stored:

00


01

!

02

%

03

?

05

e 00

99

e 00

Each step of program memory can store a single operation, whether that operation consists of one, two or three keystrokes. Thus, one step of program memory might contain a single-keystroke operation like x, while another step of program memory could contain a two-keystroke operation, like d 6. There are also three-keystroke operations, such as d + 6.

However, what is actually stored in program memory are not instruction mnemonics, but rather keycodes, discussed now.

Top

12.  Keycodes

Let's write a program to compute the surface area of a sphere. For this discussion go into Settings and ensure that GO-25 Step Editing is turned on.

First, set the PRGM - RUN switch to PRGM so that the sequence of keystrokes will be recorded for later execution. Second, press CLEAR PRGM to clear the calculator of previous programs. The display will show:

        00
        
This tells you that you are at step 00, the beginning of program memory. Step 00 contains an automatic stop instruction and cannot be used to record your program keystrokes. Program keystrokes are recorded in steps 01 through 99. The program memory for GO-25 is separate from the four stack registers, the LAST X register, and the ten storage registers.

With 00 displayed in PRGM mode, you are ready to key in your program. Surface area of a sphere is calculated using the formula A = π d². The short list of keys for the area of a sphere program is:

        g X2  ; square the diameter
        g π   ; load X with π
        x     ; multiply d² by π
        
Press the first key of the program and the display will change to:
            01       15
        
Since it's impossible to key anything into step 00 this first key is recorded in step 01. The two numbers on the right of the display designate the key stored in that step. Each key on the keyboard has a two-digit keycode. For convenience, the digit keys are coded 00 through 09. All other keys are coded by their position on the keyboard. The first digit denotes the row of the key and the second digit the number of the key in that row. So 15 tells you that the key is in the first row on the calculator and that it is the fifth key in that row, the g key. This handy matrix system allows you to easily determine the code for each instruction without using a reference table.

To conserve program memory when using prefixed functions, the keycodes for the prefix and the function are merged into one step. For an example of this press the second key of the program, X2, and the display will change to:

            02    13 00
        
Whoa, what just happened? The calculator is smart enough the realize that program step 01 is complete, and has stored that step into program memory and advanced its internal step pointer to step 02, ready for you to key in the next instruction. To see step 01 just look at the program listing view if it's visible. If it's not visible make it so with a swipe-up, or touch the w key to back-step the step pointer so that step 01 is visible in the calculator display. You will see this:
            01    15 02
        

The two-number code 01 on the left side of the display designates the step number of program memory that is being displayed. The two pairs of numbers on the right side of the display indicate that the function X2 has been recorded in that step of program memory. Digits 1 and 5 denote the g key. Digits 0 and 2 denote the 2 key. The operation stored then, is g 2 which is the X2 function. In every case, a single operation uses only one step of program memory.

Before proceeding to enter the rest of the program, if you used the w key to review step 01, now touch the q key to single-step back to step 02. To edit a step it must be visible in the calculator display.

The keys for finding the area of a sphere and their corresponding codes are shown below. Press each remaining key in turn and verify the keycodes shown in the display.

            g X2   01    15 02
            g π    02    15 73
            x      03       61
        
In this case, a program consisting of five keystrokes takes only three steps of program memory.

GO-25 provides four extended keycodes, the 8* series, named because they assume the existence of an 8th row of calculator keys. Because there are no such keys, these opcodes are inserted using a contectual menu activated from the program listing auxiliary view. The new instructions, DMP, BEL, SEC and RND are explained in the section Special 8* Opcodes.

Top

13.  Programming Keys

Top

14.  Program Execution

The section Programmed Problem Solving provided a concise overview of how to write, load and run our surface area of a sphere program. Let's delve deeper into those topics.

Top

15.  Program Editing

Editing a program in PRGM mode consists of three basic maneuvers: clearing stuff, positioning the step pointer to an instruction of interest, and replacing the instruction after1 the step pointer with a NOP instruction or with a new instruction. GO-25 adds "full screen" editing to the mix, which inserts and deletes NOP instructions and rearranges instructions (including resequencing GTO instructions as necessary).

  1. Clearing stuff

    • In PRGM mode, _X clears all 99 program memory steps to e 00 instructions and resets the step pointer to step 00.
    • _Z cancels r, t, d, RCL or GTO.

  2. Positioning the Step Pointer

    • e n n
    • q single step
    • w back step
    • In RUN mode, _X sets the step pointer to step 00

  3. Replacing Instructions

    The instruction replace operation normally affects the step after the current step pointer, but there is a settings option GO-25 Step Editing to replace the step at the step pointer instead. Regardless of the replacement instruction target, if you press a NOP or any recordable operation, it will replace the target instruction in program memory.

  4. Editing the Program Listing (unavailable on Apple TV)

    The program listing auxiliary window has a special Edit (Done) button that enables insertion and removal of NOP instructions, as well as re-arrangement of program steps using gripper pads.

    Touching a green plus inserts a NOP before that step, and simultaneously drops program step 99. Touching the red minus removes that NOP. Touching and dragging a gripper pad moves that program step, re-inserting it when you have reached the destination and released the gripper.

    All GTO targets are automatically re-sequenced.

Top

Part III - GO-25 Programs

16.  Special 8* Opcodes

GO-25 supports six special opcodes not available on a real HP-25C. These are collectively known as the 8* series of instructions, named because they exist on a theoretical 8th row of calculator keys having an infinite number of columns. You cannot key these instructions in, but they can be typed as part of a program imported into the calculator. Or, in PRGM mode, if you touch and hold a program listing step, a contextual menu appears so you can add extended GO-25 opcodes. See the section on keycodes for background information.

  1. DMP (80) dumps the step pointer and the stack and memory registers to the paper tape for debugging.
  2. BEL (81) sounds a tram bell.
  3. BEL (14 81) sounds BEL1 (win).
  4. BEL (15 81) sounds BEL2 (lose).
  5. SEC (82) stores the second of the day 0 - 86,399 in X, handling the stack just like an RCL.
  6. RND (83) replaces X with a random integer 0 < abs(X) < 232, without otherwise changing the stack.

Top

17.  Naming and Documenting Your Program

A GO-25 program can exist by itself, a simple stream of step numbers and instructions, just like an HP-25C program, or it can be bundled with its documentation in a structure called a Program Package. These descriptive comments can be simple Text, or expressive HTML markup.

A Program Package is really easy to maintain, it's just a file (ASCII or UTF-8 Unicode), and consists of two parts: the documentation at the top / beginning, immediately followed by the program. That's it. Simple enough to manage in most any editor you choose.

Generally, it's useful to associate a name with a program, and GO-25 tries to extract the name from the documentation as the program is being read into memory. If you provide no documentation at all, or do not adhere to the following prescribed naming rule, then Untitled-go25.txt is used.

While the program is being read into memory GO-25 is also scanning the documentation to determine if it's plain Text or rich HTML, by searching for a case-insensitive <html> / </html> tag pair. This defines the start and end of the HTML documentation; if those two strings are not found then the documentation is assumed plain Text.

Finally, the prescribed program naming rule is:

e.g. Einstein Tensor-go25.html

The extension simply reminds humans of the documentation type, and reminds computers that the program is an editable file.

Top

18.  Storing and Organizing Programs

Note: For Apple TV this section is not applicable.

Beginning with iOS 11 managing your programs is relatively easy using Apple's Files App. Files not only provides a storage location for your programs such as iCloud Drive or Dropbox, but also allows you to create subfolders and maneuver between them, which means you can setup a file hierachy that is meaningful to you. To take advantage of theses capabilities, incorporate Files in your import and export workflows.

If you have iCloud Drive configured then GO-25 creates a folder similar to this for Files to store and retrieve your programs. Tapping the display in PRGM mode brings up the Import PRGM / Share PRGM menu, allowing you to transfer GO-25 programs to / from the App.

Additional help is available in the following sections Importing Programs and Sharing Programs.

Top

19.  Persist Program Registers

If you enable the Settings option Persist Program Registers, when a program is shared (saved) all the device register values are saved with it. Subsequently, when you import (open) that program device registers are restored to their previously saved values. This behavior is implemented via a special comment in the program's documentation of the form:

<Registers>stack,lastX,memory</Registers>

Inside the Registers element is a list of comma-separated double precision numbers: 4 for the stack X, Y, Z and T registers, 1 for the LAST X register, and n numbers for the memory registers, where n = 10 for GO-25 and n = 30 for GO-29.

Of course, nothing prevents you from editing the registers list manually; for instance, this list for GO-25

<Registers>-1,-2,-3,-4,-5,0,1,2,3,4,5,6,7,8,9</Registers>

presets the device registers to this:

If there are registers you do not want to preset then leave their value in the list empty; for instance this list initializes all registers excluding the 4 stack registers:

<Registers>,,,,-5,0,1,2,3,4,5,6,7,8,9</Registers>

Notes:

Top

20.  Importing Programs

Note: For Apple TV this section is not applicable, see Apple TV Particulars.

On an actual HP-25C programs are entered using the calculator keys. That method works with GO-25 as well, but it's often easier to edit your programs in another App and import them into GO-25 (activate the Import menu by touching the calculator's display in PRGM mode). For instance, you can use Mail to write your program, then copy the program to the pasteboard, switch to GO-25, and import the pasteboard data. As a bonus, when you are finished editing the program simply email it to yourself for later filing in your GO-25 programs folder.

You also have a My Programs container that uses File Sharing to sync programs between your computer and GO-25.

Alternately, Apps like Files use the iOS Document Model and have a menu to open their documents in another App (labelled variously as Add to appName, Copy to appName, Open in appName, or Save to appName). If such an App sends a program (named, say, SurfaceAreaOfSphere-go25.txt) to GO-25, that program's name appears in the Import PRGM window.

Finally, a small selection of programs is included in GO-25's Sample Programs container.

For macOS, in PRGM mode, you can also import a program using the File menu item Open.

Top

21.  Sharing Programs

Note: For Apple TV this section is not applicable.

You can export a program in various ways using the Share PRGM menu item (activate the Share menu by touching the calculator's display in PRGM mode). Besides the pasteboard, email and printing, you also have a My Programs container that uses File Sharing to sync programs between your computer and GO-25.

GO-25 also supports the iOS Document Model and allows other Apps to open its program files via the Open In Another App menu item. When sending a program to another App, GO-25 uses the program name to identify the program. For example, use this option to export a program to the Files App.

For macOS, in PRGM mode, you can also export a program using the File menu item Save.

Top

22.  User Contributed Programs

Unsupported programs that you may copy to the pasteboard and then import into GO-25 while in PRGM mode.

Top

Epilogue

23.  Improper Mathematical Operations

If you attempt a calculation containing an improper operation - say, division by zero - the display will show Error. To clear, press v.

The following are improper operations:

  • ÷ where X = 0
  • Yx where Y < 0 with X not an integer, or where Y = 0 with X < 0, or where X = Y = 0
  • √X where X < 0
  • 1/X where X = 0
  • log where X <= 0
  • ln where X <= 0
  • sin-1 where absolute value of X > 1
  • cos-1 where absolute value of X > 1
  • STO ÷ where X = 0
  • A where n <= 0
  • s where n <= 0

Top

24.  Settings

Settings are built into the calculator, except Apple TV where they are part of the tvOS Settings App. Available Settings options are device dependant - here are their default values:

Top

25.  Gesture Summary

Reminder: There are no gestures on Apple TV thus this section is not applicable, see the section Apple TV Particulars for details. On macOS taps/touches are pointer clicks, pans/swipes/scrolls are pointer drags.

  • Shake to clear X. Not available on macOS.
  • Single tap the calculator display for Copy / Paste / Paper Tape in RUN mode.
  • Single tap the calculator display for Import PRGM / Share PRGM in PRGM mode.
  • Double tap the calculator display to show/hide the stack, memory and paper tape views in RUN mode.
  • Double tap the calculator display to show/hide the program description and listing views in PRGM mode.
  • Two-finger pan for iPad to reposition the stack, program and calculator views.
  • Touch and hold q or w in RUN mode to display the next or previous step, respectively.
  • Touch a program listing line to make it the current SP.
  • Touch a program listing line to dismiss the keyboard while editing the program description.
  • Touch and hold for 1.0 second (long touch) a program listing step to add special opcodes.
  • Long touch for iPad/Mac on the program documentation window to toggle between the docked and floating views. The gripper handles resize and move the floating window: on iPad use a two-finger pan, for macOS drag using your pointing device.
  • Touch switch-views control to alternate between two views.
  • Swipe up and down to scroll program description, program listing and sample programs views.
  • Swipe left and right to manipulate slide switches, if activated in Settings. Not available on macOS.
  • Flick left on the calculator display to erase last mantissa character entered.
  • Triple tap the calculator display to show/hide the Info button  .

Top

26.  Macintosh Particulars

All calculator capabilities are supported on macOS.

  • Mac Window Mechanics

    The App has a single window with the three standard window control buttons in the top-left corner:

    • The red button closes the window and quits the App.
    • The yellow button minimizes the window to the Dock.
    • The green button toggles the window between two size states: a minimalist size and the window's previous size. When zooming to its minimalist size all Auxiliary Information Views are hidden, which are then restored when zooming back to the previous window size.

  • Mac Menu Actions

    Some App actions have been duplicated in the macOS menus:

    • Application : Settings opens the Settings view.
    • File : Open imports a program.
    • File : Save exports a program.
    • File : Print prints current program.
    • Edit : Paper Tape manipulates the paper tape.
    • Edit : Copy exports the value of X to the pasteboard.
    • Edit : Paste imports a new value of X from the pasteboard.
    • Help : Help shows the documentation in a Help Book.

Top

27.  Apple TV Particulars

Most calculator capabilities are supported on Apple TV, with these notable exceptions:

  • Only the Sample Programs are available for import, you enter all other programs manually, just like in 1976.
  • No fancy Program editing, you do it all manually, just like in 1976.
  • No fancy Program sharing, you write it down on a piece of paper, just like in 1976.
  • No Copy / Paste.

Enjoy your trip in the WABAC Machine!

  • Focus Navigation

    Use the Apple TV remote to move the screen focus left, right, up and down until the desired object is highlighted, then click. The calculator keys are arranged in a regular grid so focus navigation is easy. But to reach the Info button and either of the two switch-views controls there is a special path passing through a focus portal key that you must follow in order to move the screen focus in and out of the calculator:

    • Left focus portal key q
      From the left portal key, focus left once to reach the stack and paper tape, focus left a second time to reach the Info button. Simply reverse your path to return to the calculator.

    • Right focus portal key t
      From the right portal key, focus right once to reach the program, and reverse your path to return to the calculator.

    You may rightly view this focus ordering as if the following objects exist in their own logically horizontal row that you can freely traverse left and right:

    Stack q w GTO r t Program

    A focused, clickable object is highlighted: calculator keys with a translucent white overlay, and other objects with a light gold background. When the calculator first starts the initial screen focus is on the Info button for quick access to Help and Settings, as seen in this picture. Note that the OFF - ON switch can never receive the focus because the calculator is always on.

    The Info button actually identifies with both switch-views controls, this means that the focus order is really a ring that you may circle in either direction:

    As with iOS and macOS, you can view and scroll the paper tape and program listing on tvOS. Move the focus to the appropriate switch-views control , tap the control until the scrollable view of interest is visible, then pan up and down to scroll the contents. When you are finished, pan left or right to move the screen focus to the next object in the focus ring. Remember that a view is only scrollable when it has the light gold focus.

    Note: when a scrollable view is visible it inserts itself into the focus ring.

  • LED Display Focus Actions

    Similarly to iOS and macOS, after moving the screen focus up from the focus ring to the calculator's display area you can initiate context sensitive actions unavailable on a real device:

    • In RUN mode Paper Tape Actions... allows you to erase or annotate the paper tape.
    • In PRGM mode Import Sample Program... shows a list of programs you may run. After making a selection the calculator returns to RUN mode and the program inserts itself into the focus ring.

Top

28.  Keyboard Usage

GO-21, GO-25 and GO-29 all provide support for hardware keyboards. You can enter digits and a decimal point into the X register by simply typing those characters, even from a numeric keypad. Use delete instead of a flick left in the display to delete the last character typed, and return instead of z to push the completed number onto the stack.

To enter an exponent of 10 for a floating point number type e instead of c. To change the sign of a mantissa or exponent type c instead of x. To perform any of the four basic arithmetic operations - + ? / on these numbers type - + * /, respectively.

So the keyboard works rather well for simple calculator operations, but it's non-trivial to do more because there are no familiar mappings between keyboard and calculator keys. However, all 30 keys and the 2 slide switches of these calculators have a keyboard equivalent, with 27 keys common to all devices and 6 keys specific to an individual model:



27 Common

6 Specific

GO-21

orange    t

    green

GO-25

orange    t

r  violet (except ¦)

GO-29

orange    t

r  violet (except w)

Mappings by color (see below)


Additionally,
  • ⌘? shows the Info view for Help and Settings
  • keys colored red map to virtual calculator keys
  • on tvOS there are even keys to mimic an Apple TV remote:

Key(s)

Action

esc

Menu

return

Select

      

Focus

  

Pan/Scroll

is the control key



Top

29GO-25 versus HP-25C Differences
  • Maximum program steps has been doubled to 99.
  • Additional storage registers R8 and R9.
  • For g, the square of the number in Y is added to the contents of storage register R8.
  • X, Y, Z and T registers, and the memory registers are continuous and survive a power Off.
  • A blinking decimal point indicates very low battery power (except Apple TV).

Top

30.  Acknowledgements
  • Many thanks to my valued friend, David Marriott of Melbourne, Australia, whose calculator artwork, GO-25 font, program examples, sounds, ideas, testing and support transformed this good App into a great App.
  • Thank you Willy Kunz of Zurich, Switzerland, for showing me how to support international keyboards.
  • HP-25 Owner’s Handbook

Top

31.  What's New?

OS Version Compatibilty
   iOS 16.0 -26.5.1
   iPadOS 16.0 -26.5.1
   tvOS 16.0 -26.5.1
   macOS 13.0-26.5.1
   visionOS 1.0-26.5.1

26.5.1 - 2026.06.11

  • Repair broken icon and update documentation.
  • Update to Apple OS versions 26.5.1.

Top

32.  Index
              
              
O, 9
I, 9
%, 9
m, 9
D, 9
g, 9
H, 9
o, 9
$, 9
T, 9
G, 9
@, 9
Acknowledgements, 30
Apple TV Particulars, 27
ATV Focus Navigation, 27
ATV LED Display Focus Actions, 27
Automatic Display Switching, 5
Auxiliary Information Views, 8
w, 13
Calculator Overflow and Underflow, 5
Capabilities At A Glance, 1
x, 9
CLEAR Z, 9
CLEAR X, 4
CLEAR C, 7
CLEAR V, 6
v, 6
Controlling the LED Display, 5
Copy, 6
k, 9
L, 9
P, 9
Display Control Keys: FIX, SCI, ENG, 5
F, 9
c, 6
E, 5
Engineering notation, 5
z, 6
Error Display, 5
r, 2
Q, 5
Fixed Point notation, 5
M, 9
Function Keys, 9
Functions and the Stack, 9
t, 2
Gesture Summary, 25
GO-25 versus HP-25C Differences, 29
}, 9
e, 13
Import PRGM, 7
Importing Programs, 20
Improper Mathematical Operations, 23
n, 9
Introduction, 2
Keyboard Usage, 28
Keycodes, 12
Keying In Exponents of Ten, 5
Y, 9
LED Display PRGM Mode, 5
LED Display RUN Mode, 5
u, 9
i, 9
Logarithm and Exponential Functions, 9
Low Power Display, 5
Mac Menu Actions, 26
Mac Window Mechanics, 26
Macintosh Particulars, 26
Manipulating Stack Contents, 9
Manipulating Storage Registers, 7
Manual Problem Solving, 3
Naming and Documenting Your Program, 17
&, 13
OFF, 2
ON, 2
Paper Tape, 6
Paste, 6
U, 13
Persist Program Registers, 19
Pi, Using, 9
Polar/Rectangular Coordinate Conversion, 9
prefix key, r, 2
prefix key, t, 2
PRGM, 2
Program Editing, 15
Program Execution, 14
Program Memory, 11
Programmed Problem Solving, 4
Programming Keys, 13
{, 9
f, 7
Reciprocals, 9
,, 13
RUN, 2
s, 6
S, 9
W, 5
Scientific notation, 5
Settings, 24
Share PRGM, 7
Sharing Programs, 21
j, 9
K, 9
Special 8* Opcodes, 16
Square Roots, 9
q, 13
Stack Operations, 6
d, 7
Storage Register Arithmetic, 7
Storage Registers, 7
Storing and Organizing Programs, 18
l, 9
B, 9
Three Modes Of Operation, 10
User Contributed Programs, 22
What's New?, 31
A, 9
N, 13
b, 13
[, 13
y, 13
#, 13
R, 13
J, 13
h, 13
!, 9
a, 6
p, 9

Top


Copyright (©) 2010 - 2026 BigCatOS. All rights reserved.   |    Contact