-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8a1a85
commit c898913
Showing
1 changed file
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,33 @@ | ||
# KhiCAS for NumWorks | ||
|
||
[![Build](https://github.com/nwagyu/khicas/actions/workflows/build.yml/badge.svg)](https://github.com/nwagyu/khicas/actions/workflows/build.yml) | ||
|
||
This apps lets you run [Xcas](https://www-fourier.ujf-grenoble.fr/~parisse/giac.html) on your [NumWorks calculator](https://www.numworks.com). | ||
|
||
## Install the app | ||
|
||
Installing is rather easy: | ||
1. Download the latest `khicas.nwa` file from the [Releases](https://github.com/nwagyu/khicas/releases) page | ||
2. Get a [Nwagra](https://www.nwagyu.com/pages/extended-memory/) pill | ||
3. Head to [my.numworks.com/apps](https://my.numworks.com/apps) to send the `nwa` file on your calculator | ||
|
||
## Dependencies | ||
|
||
This programs uses four libraries: | ||
|
||
# Versions | ||
|Library|Version| | ||
|-|-| | ||
|gmp|6.2.1| | ||
|mpfr|4.1.0| | ||
|mpfi|1.5.4| | ||
|giac|1.9.0-21| | ||
|[gmp](https://gmplib.org/)|6.2.1| | ||
|[mpfr](https://www.mpfr.org/)|4.1.0| | ||
|[mpfi](http://perso.ens-lyon.fr/nathalie.revol/software.html)|1.5.4| | ||
|[giac](https://www-fourier.ujf-grenoble.fr/~parisse/giac.html)|1.9.0-21| | ||
|
||
## Build the app | ||
|
||
To build this sample app, you will need to install the [embedded ARM toolchain](https://developer.arm.com/Tools%20and%20Software/GNU%20Toolchain) and [nwlink](https://www.npmjs.com/package/nwlink). | ||
|
||
```shell | ||
brew install numworks/tap/arm-none-eabi-gcc node # Or equivalent on your OS | ||
npm install -g nwlink | ||
make clean && make build | ||
``` |