Skip to content

Commit

Permalink
Update docs and spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Jan 8, 2024
1 parent 2e05d77 commit e3f88d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
17 changes: 9 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,17 @@ builds the application and verifies the presence of `bin/refapp-8xp`.

## Aditional Information

### Origins
Origins
- This project has been inspired by and influenced by numerous previous works, including (but not limited to) the [azertyfun/LibTI](https://github.com/azertyfun/LibTI) project.

This project has been inspired by and influenced by numerous previous works,
including (but not limited to)
the [azertyfun/LibTI](https://github.com/azertyfun/LibTI) project.

### Licencing

Licensing notices:
Licensing
- The source code written for this repo (in the [`src`](./src)) directory is licensed under [_The_ _Unlicense_](./LICENSE).
- `Win*` ported `*nix` tools (including `cp.exe`, `echo.exe`, `mkdir.exe`, `mv.exe` and `rm.exe`) originate from [UnxTools](https://sourceforge.net/projects/unxutils) and include their own [distribution statements](./build/tools/UnxUtils).
- The `Win*`-ported `objcopy.exe` originates from _nuwen_'s specially-built [standalone MinGW](https://nuwen.net/mingw.html).
- The `Win*`-ported GNUmake is taken from [`ckormanyos/make-4.2.1-msvc-build`](https://github.com/ckormanyos/make-4.2.1-msvc-build).

Some of this software has been reverse engineered
from other projects or terse technical notes. In addition,
the software writes to calculator `ports`, such as `port 0x41`.
Please use at your own discretion and observe also
the [license](./LICENSE) details.
2 changes: 1 addition & 1 deletion src/startup/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static void clock_seconds_do_start(void) ATTRIBUTE_NAKED
__asm__("xor a\n");
__asm__("out (0x44), a\n");

// Ensure that the set command bit is off since its trtansition
// Ensure that the set command bit is off since its transition
// to high will actually set the clock.
__asm__("ld a, #0x1\n");
__asm__("out (0x40), a\n");
Expand Down

0 comments on commit e3f88d1

Please sign in to comment.