2019-11-08 03:52:29 +11:00
|
|
|
# TI-84+
|
|
|
|
|
2019-11-13 12:32:56 +11:00
|
|
|
The TI-84+ is a machine with many advantages, one being that it's very popular.
|
|
|
|
It also has a lot of flash memory and RAM.
|
|
|
|
|
|
|
|
Its builtin keyboard and screen, however, are hard to use, especially the
|
|
|
|
screen. With a tiny font, the best we can get is a 24x10 console.
|
|
|
|
|
|
|
|
There is, however, a built-in USB controller that might prove very handy.
|
2019-11-08 03:52:29 +11:00
|
|
|
|
2019-12-03 05:51:36 +11:00
|
|
|
[Further reading](../../doc/ti8x.md)
|
|
|
|
|
2019-11-08 03:52:29 +11:00
|
|
|
## Recipe
|
|
|
|
|
2019-12-02 12:11:13 +11:00
|
|
|
This recipe gets the Collapse OS BASIC shell to run on the TI-84+, using its LCD
|
2019-11-08 03:52:29 +11:00
|
|
|
screen as output and its builtin keyboard as input.
|
|
|
|
|
2019-11-13 12:32:56 +11:00
|
|
|
## Gathering parts
|
|
|
|
|
|
|
|
* [zasm][zasm]
|
|
|
|
* A TI-84+ (TI-83+ compatibility is being worked on. See issue #41)
|
|
|
|
* A USB cable
|
|
|
|
* [tilp][tilp]
|
|
|
|
* [mktiupgrade][mktiupgrade]
|
|
|
|
|
2019-11-08 03:52:29 +11:00
|
|
|
## Build the ROM
|
|
|
|
|
|
|
|
Running `make` will result in `os.rom` being created.
|
|
|
|
|
2020-01-03 08:59:38 +11:00
|
|
|
## Emulate
|
2019-11-08 03:52:29 +11:00
|
|
|
|
2020-01-03 08:59:38 +11:00
|
|
|
Collapse OS has a builtin TI-84+ emulator using XCB for display in `emul/hw/ti`.
|
|
|
|
You can invoke it with `make emul`.
|
2019-11-08 03:52:29 +11:00
|
|
|
|
|
|
|
You will start with a blank screen, it's normal, you haven't pressed the "ON"
|
2020-01-03 08:59:38 +11:00
|
|
|
key yet. This key is mapped to tilde (~) in the emulator. Once you press it, the
|
|
|
|
Collapse OS prompt will appear. See `emul/hw/ti/README.md` for details.
|
2019-11-08 03:52:29 +11:00
|
|
|
|
|
|
|
## Upload to the calculator
|
|
|
|
|
2019-11-08 05:42:40 +11:00
|
|
|
**WARNING: the instructions below will wipe all the contents of your calculator,
|
|
|
|
including TI-OS.**
|
|
|
|
|
|
|
|
To send your ROM to the calculator, you'll need two more tools:
|
|
|
|
[mktiupgrade][mktiupgrade] and [tilp][tilp].
|
|
|
|
|
|
|
|
Once you have them, you need to place your calculator in "bootloader mode",
|
|
|
|
that is, in a mode where it's ready to receive a new binary from its USB cable.
|
|
|
|
To do that you need to:
|
|
|
|
|
|
|
|
1. Shut down the calculator by removing one of the battery.
|
|
|
|
2. Hold the DEL key
|
|
|
|
3. But the battery back.
|
|
|
|
4. A "Waiting... Please install operating system now" message will appear.
|
|
|
|
|
|
|
|
Once this is done, you can plug the USB cable in your computer and run
|
|
|
|
`make send`. This will create an "upgrade file" with `mktiupgrade` and then
|
|
|
|
push that upgrade file with `tilp`. `tilp` will prompt you at some point.
|
|
|
|
Press "1" to continue.
|
|
|
|
|
|
|
|
When this is done, you can press the ON button to see Collapse OS' prompt!
|
|
|
|
|
2019-12-02 12:11:13 +11:00
|
|
|
## Validation errors
|
|
|
|
|
|
|
|
Sometimes, when uploading an upgrade file to your calculator, you'll get a
|
|
|
|
validation error. You can always try again, but in my own experience, some
|
|
|
|
specific binaries will simply always be refused by the calculator. Adding
|
|
|
|
random `nop` or reordering lines (when it makes sense, of course) should fix
|
|
|
|
the problem.
|
|
|
|
|
|
|
|
I'm not sure whether it's a bug with the calculator or with `mktiupgrade`.
|
|
|
|
|
2019-11-10 06:20:01 +11:00
|
|
|
## Usage
|
|
|
|
|
2019-12-02 12:11:13 +11:00
|
|
|
The shell works like a normal BASIC shell, but with very tight screen space.
|
2019-11-10 06:20:01 +11:00
|
|
|
|
|
|
|
When pressing a "normal" key, it spits the symbol associated to it depending
|
|
|
|
on the current mode. In normal mode, it spits the digit/symbol. In Alpha mode,
|
|
|
|
it spits the letter. In Alpha+2nd, it spits the uppercase letter.
|
|
|
|
|
|
|
|
Special keys are Alpha and 2nd. Pressing them toggles the associated mode.
|
|
|
|
Alpha and 2nd mode don't persist for more than one character. After the
|
|
|
|
character is spit, mode reset to normal.
|
|
|
|
|
|
|
|
Pressing 2nd then Alpha will toggle the A-Lock mode, which is a persistent mode.
|
|
|
|
The A-Lock mode makes Alpha enabled all the time. While A-Lock mode is enabled,
|
|
|
|
you have to enable Alpha to spit a digit/symbol.
|
|
|
|
|
|
|
|
Simultaneous keypresses have undefined behavior. One of the keys will be
|
|
|
|
registered as pressed. Mode key don't work by simultaneously pressing them with
|
|
|
|
a "normal" key. The presses must be sequential.
|
|
|
|
|
|
|
|
Keys that aren't a digit, a letter, a symbol that is part of 7-bit ASCII or one
|
|
|
|
of the two mode key have no effect.
|
|
|
|
|
2019-11-13 12:32:56 +11:00
|
|
|
[zasm]: ../../tools/emul
|
2019-11-08 05:42:40 +11:00
|
|
|
[mktiupgrade]: https://github.com/KnightOS/mktiupgrade
|
|
|
|
[tilp]: http://lpg.ticalc.org/prj_tilp/
|