Skip to content

Commit 2b7ce54

Browse files
authored
Merge pull request #2 from bxparks/develop
merge v0.2 into master
2 parents 3ac33c0 + b856129 commit 2b7ce54

File tree

4 files changed

+27
-11
lines changed

4 files changed

+27
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
- Unreleased
4+
- 0.2 (2023-08-13)
5+
- Update downloading and installation instructions.
46
- 0.1 (2023-08-13)
57
- Create a release, with the `.8xk` so that I can see what a GitHub release
68
asset looks like, which allows me to write a better Installation guide.

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
RPN calculator app for the TI-83 Plus and TI-84 Plus inspired by the HP-42S.
44

5-
**Version**: 0.1 (2023-08-13)
5+
**Version**: 0.2 (2023-08-13)
66

77
**Changelog**: [CHANGELOG.md](CHANGELOG.md)
88

@@ -25,12 +25,14 @@ RPN calculator app for the TI-83 Plus and TI-84 Plus inspired by the HP-42S.
2525
<a name="Installation"></a>
2626
## Installation
2727

28-
RPN83P is a flash application (it no longer small enough to create as an
29-
assembly language program). Detailed instructions are given in the [RPN83P User
28+
RPN83P is a flash application that is packaged as a single file named
29+
`rpn83p.8xk`. Detailed instructions are given in the [RPN83P User
3030
Guide](USER_GUIDE.md), but here is the quick version:
3131

32-
- Copy the `rpn83p.8xk` file to the TI-83/TI-84 calculator. Use one of following
33-
link programs:
32+
- Download the `rpn83p.8xk` file from the
33+
[releases page](https://github.com/bxparks/rpn83p/releases).
34+
- Upload the file to the TI-83 Plus or TI-84 Plus calculator. Use one of
35+
following link programs:
3436
- Windows: [TI Connect](https://education.ti.com/en/products/computer-software/ti-connect-sw)
3537
- Linux: [tilp](https://github.com/debrouxl/tilp_and_gfm)
3638
- Run the program using the `APPS`:

USER_GUIDE.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
RPN calculator app for the TI-83 Plus and TI-84 Plus inspired by the HP-42S.
44

5-
**Version**: 0.1 (2023-08-13)
5+
**Version**: 0.2 (2023-08-13)
66

77
**Project Home**: https://github.com/bxparks/rpn83p
88

@@ -192,12 +192,23 @@ project.
192192
<a name="Installation"></a>
193193
## Installation
194194

195+
<a name="ObtainingProgramFile"></a>
196+
### Obtaining the Program File
197+
198+
The RPN83P app is packaged as a single file named `rpn83p.8xk`. There are at
199+
least 2 ways to obtain this:
200+
201+
- [RPN83P release page on GitHub](https://github.com/bxparks/rpn83p/releases)
202+
- go to the latest release
203+
- click and download the `rpn83p.8xk` file
204+
- Compile the binary locally
205+
- See [Compiling from Source](#Compiling) section below
206+
195207
<a name="Uploading"></a>
196208
### Uploading
197209

198-
The RPN83P app is provided as a single file named `rpn83p.8xk`. It must be
199-
uploaded to the calculator using a "link" program from a host computer. There
200-
are a number of options:
210+
The `rpn83p.8xk` file must be uploaded to the calculator using a "link" program
211+
from a host computer. There are a number of options:
201212

202213
**Linux**: Use the [tilp](https://github.com/debrouxl/tilp_and_gfm) program. On
203214
Ubuntu Linux 22.04 systems, the precompiled package can be installed using `$
@@ -232,7 +243,8 @@ should see a screen that looks like:
232243
The RPN83P application can be quit using:
233244

234245
- `2ND` `QUIT`: to exit to normal TI calculator
235-
- `2ND` `OFF`: to turn the calculator off (the RPN registers will be preserved)
246+
- `2ND` `OFF`: to turn the calculator off (the RPN registers and storage
247+
registers will be preserved)
236248

237249
<a name="BasicUsage"></a>
238250
## Basic Usage

src/menuhandlers.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ helpPages:
127127

128128
msgHelpPage1:
129129
.db escapeLargeFont, "RPN83P", Lenter
130-
.db escapeSmallFont, "v0.0 (2023", Shyphen, "08", Shyphen, "13)", Senter
130+
.db escapeSmallFont, "v0.2 (2023", Shyphen, "08", Shyphen, "13)", Senter
131131
.db "(c) 2023 Brian T. Park", Senter
132132
.db Senter
133133
.db "An RPN calculator for the", Senter

0 commit comments

Comments
 (0)