Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/KnightOS/KnightOS
OS for z80 calculators
https://github.com/KnightOS/KnightOS
assembly calculator custom-kernel knightos operating-system z80
Last synced: about 2 months ago
JSON representation
OS for z80 calculators
- Host: GitHub
- URL: https://github.com/KnightOS/KnightOS
- Owner: KnightOS
- License: other
- Created: 2012-09-19T22:45:06.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2021-05-02T06:26:08.000Z (over 3 years ago)
- Last Synced: 2024-09-30T05:43:59.246Z (about 2 months ago)
- Topics: assembly, calculator, custom-kernel, knightos, operating-system, z80
- Language: Assembly
- Homepage:
- Size: 5.55 MB
- Stars: 1,293
- Watchers: 99
- Forks: 186
- Open Issues: 106
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KnightOS
[![builds.sr.ht status](https://builds.sr.ht/~pixelherodev/knightos.svg)](https://builds.sr.ht/~pixelherodev/knightos?)
**KnightOS** is a third-party operating system for TI calculators. It provides a
passable Unix-like system for calculators. KnightOS is built on top of [the
KnightOS kernel](https://github.com/KnightOS/kernel) - this repository is the
official userspace. KnightOS runs on the following calculators:* TI-73
* TI-83+
* TI-83+ Silver Edition
* TI-84+
* TI-84+ Silver Edition
* TI-84+ Color Silver EditionKnightOS also runs on the French variations of these same calculators.
## What is this repository?
All of the pieces of KnightOS are maintained as separate projects under the
KnightOS organization [on GitHub](https://github.com/KnightOS). This project
exists to tie them all together. The `package.config` file lists the packages
that are installed on the default userspace. The KnightOS SDK is used to install
these packages, and then the default KnightOS settings are installed on top of
that. Additionally, this builds upgrade files and applies any required exploits.## Compiling
To compile KnightOS, first install the KnightOS SDK. Instructions for the SDK
installation can be found [on the website](https://knightos.org/sdk).In addition to the SDK, you will need
[mktiupgrade](https://github.com/KnightOS/mktiupgrade),
[sass](https://github.com/KnightOS/sass) and [kimg](https://github.com/KnightOS/kimg).Then, run the following:
knightos init --platform=
Change `` to the appropriate platform for your needs:
| Model | `make` Target |
| -------------------- | ------------- |
| TI-73 | TI73 |
| TI-73 Explorer | TI73 |
| TI-83+ | TI83p |
| TI-83+ SE | TI83pSE |
| TI-84+ | TI84p |
| TI-84+ SE | TI84pSE |
| TI-84+ CSE | TI84pCSE |
| TI-84 Pocket.fr | TI84p |
| TI-84 Plus Pocket SE | TI84pSE |Then you can use various make targets to compile the system:
make # Compiles and places a ROM file in bin/
make upgrade # Compiles and places an upgrade file in bin/
make run # Compiles and runs in an emulator
make debug # Compiles and runs in a debuggerIf you just want something you can install on your calculator, try `make
upgrade` and check the `bin/` directory. Installation instructions are available
online at http://www.knightos.org/download.## Custom Kernels
You can use a custom kernel during development if you like. Add
`--kernel-source=/path/to/your/kernel` to `knightos init`. You will, of course,
need to install all of the kernel's dependencies for this to work.## Help, Bugs, Feedback
If you need help with KnightOS, want to keep up with progress, chat with
developers, or ask any other questions about KnightOS, you can hang out in the
IRC channel: [#knightos on irc.freenode.net](https://webchat.freenode.net/?channels=knightos).
You can also subscribe to our [mailing list](http://lists.knightos.org/).To report bugs, please create [a GitHub issue](https://github.com/KnightOS/KnightOS/issues/new) or contact us on [IRC](https://webchat.freenode.net/?channels=knightos).
If you'd like to contribute to the project, please see the [contribution guidelines](http://www.knightos.org/contributing).