2024-03-21 12:46:02 +01:00
|
|
|
# Emulator of the HP 48GX, HP 49, and HP 40
|
|
|
|
|
2024-03-28 09:24:20 +01:00
|
|
|
## Building
|
2024-03-21 12:46:02 +01:00
|
|
|
|
|
|
|
``` shell
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
2024-08-25 18:40:59 +02:00
|
|
|
## Installing
|
|
|
|
``` shell
|
|
|
|
make install DESTDIR=/
|
|
|
|
```
|
|
|
|
|
2024-03-28 09:24:20 +01:00
|
|
|
## Using
|
2024-08-25 18:40:59 +02:00
|
|
|
|
|
|
|
### locally
|
2024-03-21 12:46:02 +01:00
|
|
|
``` shell
|
2024-03-28 09:24:20 +01:00
|
|
|
./dist/run48.sh
|
2024-03-21 12:46:02 +01:00
|
|
|
```
|
|
|
|
|
2024-08-25 18:40:59 +02:00
|
|
|
### when installed
|
|
|
|
``` shell
|
|
|
|
saturn48gx
|
|
|
|
```
|
|
|
|
|
2024-03-28 09:24:20 +01:00
|
|
|
|
|
|
|
## Post-fork changelog
|
2024-03-21 12:46:02 +01:00
|
|
|
- replaced the build system with a basic Makefile
|
|
|
|
- updated license from GPL2-or-later to GPL3-or-later
|
|
|
|
- moved binaries and their dependencies under ./dist/
|
|
|
|
- new helper scripts run48.sh and run49.sh
|
2024-08-25 18:40:59 +02:00
|
|
|
- ROMs helper Makefile
|
2024-03-21 12:46:02 +01:00
|
|
|
|
2024-03-28 09:24:20 +01:00
|
|
|
## Known bugs
|
|
|
|
- I could get neither the 49 nor the 40 ROM running yet.
|
2024-03-21 12:46:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
**This is a fork of saturn v4.1.1.1 originally by Ivan Cibrario Bertolotti.**
|
|
|
|
|
|
|
|
Original source are available at https://www.hpcalc.org/details/4382
|
|
|
|
|
|
|
|
Original documentation are kept in ./docs-4.1.1.1/ and ./manual/
|