1
0
Fork 0
forked from Miroirs/x49gp
x49gp but maintained
Find a file
2024-11-14 16:45:05 +01:00
dist rethink commandline parameters 2024-11-14 15:58:38 +01:00
docs remove *.lib, create docs/ 2024-10-22 13:04:47 +02:00
src no need for gboolean when we have stdbool 2024-11-14 16:45:05 +01:00
.clang-format ignore s3c2410.h in make pretty-code 2024-11-05 13:48:44 +01:00
.clangd clangd 2024-10-22 15:45:08 +02:00
.gitignore install bootloader in the expected path 2024-10-23 09:45:25 +02:00
Makefile have only --datadir= options; use opt. instead x49gp-> where relevant 2024-11-14 15:18:55 +01:00
README.md update README for gtk3 2024-11-13 12:29:58 +01:00

Quick Start Guide (2024-10-24)

Taken over by gwh, originally by Egan Ford egan@sense.net

NOTE: READ ALL INSTRUCTIONS

Prereqs:

  • MacOS 10.12 64-bit (outdated, likely doesn't work):

    • Install XQuartz, Xcode (from your installation media) in that order.
    • Install Macports (macports.org), then:
  sudo port install gtk3 pkgconfig gcc6
  sudo port select --set gcc mp-gcc6
  export PATH=/opt/local/bin:$PATH
  • Ubuntu:
  sudo apt-get install git libgtk3.0-dev
  • RedHat/CentOS, Fedora:
  sudo yum install git gtk3-devel
  • Arch:
  sudo pacman -S git gtk3

Start up X11 and use xterm


Download x49gpng source:

git clone https://github.com/gwenhael-le-moine/x49gpng.git

Build:

cd x49gpng
make

Install (optional):

make install

Run:

./dist/x49gpng

When installed, there should be an applications menu entry to run x49gpng. Installing also enables running it from the terminal in any directory:

x49gpng

First launch setup

On the first launch, the calculator will be missing a firmware, forcing the bootloader to complain and demand a fresh one. HP's official firmwares can be found at e.g.: https://www.hpcalc.org/hp49/pc/rom/ Some of the most popular of these are also included in x49gpng's source directory. Alternatively, the most up-to-date version of NewRPL can be found at: https://hpgcc3.org/downloads/newrplfw.bin

Pick a firmware to use and store it in any directory along with its update.scp file. The update.scp file only contains the filename of the firmware (when renaming the firmware, make sure the new name fits into a DOS-style 8.3 naming scheme) followed by a DOS-style linebreak, so a missing update.scp can be rectified easily.

Right click on the screen, or press the menu key on a physical keyboard, to open the menu, and click on "Mount SD folder". Select the directory containing the firmware. Then, select the SD option from the bootloader's update source menu by clicking on the virtual key labeled "2" or by pressing the "2" key on a physical keyboard.

Now the bootloader is installing the firmware; wait until it finishes printing hex numbers to the virtual display, then follow its prompt to press Reset ( = F12 or the Reset entry in the menu) or Enter. The calculator should be fully usable after this procedure.


Do stuff, e.g.:

Restore backup:

BACKUP
3
->TAG
RESTORE

Install ARMToolbox (HPGCC2):

2
SETUP.BIN
3
->TAG
RCL
EVAL

(Right Click ON, Left Click C)


To Exit Emulator

Use any of:

  • Press F7 or F10

  • Press Alt-F4 or your system's equivalent key combination

  • Open the menu using a right click on the screen or the menu key, then choose "Quit"

  • Press Ctrl-C in the launch terminal


Start Over:

  • clean slate?
rm -r ~/.config/x49gpng/
  • soft reset only?

With x49gpng running, press F12, or right click on the screen and select "Reset" from the menu.


Debugging with x49gpng

There is a GDB interface for debugging ARM programs, e.g. HPGCC2/3 applications or replacement firmwares. To use it, start x49gpng from a terminal with the -d option, and start arm-none-eabi-gdb with an appropriate ELF file in another terminal. To connect to x49gpng, type in the GDB console:

target remote :1234

Known Limitations:

  • HPGCC SD Card I/O
    • libfsystem unavailable.
    • f* calls unstable (HPGCC2)
    • f* calls stable (HPGCC3)

Post fork todo-list: