User Variable Tokens

We're glad you came by, but you might find what you're looking for elsewhere.

TI-Basic Developer is not the site it once was. While its information on commands and other calculator features remains almost second-to-none, its forum, archives, and even hosting service, Wikidot, have been decaying for years. The calculator community would love to see what you're working on, or help you in your next coding adventure, but TI-Basic Developer is no longer the place to do it.

Instead, you should head over to Cemetech (primarily American) or TI-Planet (primarily international). Both are active, well-established forums with their own archives, chatrooms, reference material, and abundant coding tools and resources. We'll see you there, we hope.

These two-byte tokens are used for the more complicated user-defined variables. All token values here (and elsewhere in this guide) are in hexadecimal.

Note that although these are the only tokens that are accessible from menus, adding any byte after the first (variable-type) byte will give a valid variable name (e.g. the token 5C 0A is a valid matrix, and AA 0A is a valid string). Since this is unintended behavior on the part of the OS developers, these extra tokens will usually appear as a ? symbol. Such tokens can be used if you run out of regular variable names for matrices or strings. It's possible to do the same for pictures, but harder: since StorePic and RecallPic check whether the argument is 0..9, an assembly utility program is required to store and recall them (otherwise, all you need is some assembly program to actually paste the token somewhere).

First Byte 0x5C (Matrices)

  • 5C 00 — [A]
  • 5C 01 — [B]
  • 5C 02 — [C]
  • 5C 03 — [D]
  • 5C 04 — [E]
  • 5C 05 — [F]
  • 5C 06 — [G]
  • 5C 07 — [H]
  • 5C 08 — [I]
  • 5C 09 — [J]

First Byte 0x5D (Lists)

  • 5D 00 — L1
  • 5D 01 — L2
  • 5D 02 — L3
  • 5D 03 — L4
  • 5D 04 — L5
  • 5D 05 — L6

First Byte 0x5E (Equations)

  • 5E 10 — Y1
  • 5E 11 — Y2
  • 5E 12 — Y3
  • 5E 13 — Y4
  • 5E 14 — Y5
  • 5E 15 — Y6
  • 5E 16 — Y7
  • 5E 17 — Y8
  • 5E 18 — Y9
  • 5E 19 — Y0
  • 5E 20 — X1T
  • 5E 21 — Y1T
  • 5E 22 — X2T
  • 5E 23 — Y2T
  • 5E 24 — X3T
  • 5E 25 — Y3T
  • 5E 26 — X4T
  • 5E 27 — Y4T
  • 5E 28 — X5T
  • 5E 29 — Y5T
  • 5E 2A — X6T
  • 5E 2B — Y6T
  • 5E 40 — r1
  • 5E 41 — r2
  • 5E 42 — r3
  • 5E 43 — r4
  • 5E 44 — r5
  • 5E 45 — r6
  • 5E 80 — u
  • 5E 81 — v
  • 5E 82 — w

First Byte 0x60 (Pictures)

  • 60 00 — Pic1
  • 60 01 — Pic2
  • 60 02 — Pic3
  • 60 03 — Pic4
  • 60 04 — Pic5
  • 60 05 — Pic6
  • 60 06 — Pic7
  • 60 07 — Pic8
  • 60 08 — Pic9
  • 60 09 — Pic0

First Byte 0x61 (GDBs)

  • 61 00 — GDB1
  • 61 01 — GDB2
  • 61 02 — GDB3
  • 61 03 — GDB4
  • 61 04 — GDB5
  • 61 05 — GDB6
  • 61 06 — GDB7
  • 61 07 — GDB8
  • 61 08 — GDB9
  • 61 09 — GDB0

First Byte 0xAA (Strings)

  • AA 00 — Str1
  • AA 01 — Str2
  • AA 02 — Str3
  • AA 03 — Str4
  • AA 04 — Str5
  • AA 05 — Str6
  • AA 06 — Str7
  • AA 07 — Str8
  • AA 08 — Str9
  • AA 09 — Str0

.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Noncommercial 2.5 License.