2024-03-21 11:25:58 +01:00
|
|
|
.PHONY: get-roms mrproper
|
|
|
|
|
2024-08-25 17:47:59 +02:00
|
|
|
get-roms: gxrom-l gxrom-m gxrom-p gxrom-r rom.49g
|
2024-03-21 11:25:58 +01:00
|
|
|
|
|
|
|
mrproper:
|
2024-08-25 17:47:59 +02:00
|
|
|
rm -f gxrom-l gxrom-m gxrom-p gxrom-r rom.49g
|
2024-03-21 11:25:58 +01:00
|
|
|
|
2024-08-25 17:39:50 +02:00
|
|
|
# HP 48Gx
|
2024-03-21 11:25:58 +01:00
|
|
|
gxrom-l:
|
|
|
|
curl "https://www.hpcalc.org/hp48/pc/emulators/gxrom-l.zip" --output - | funzip > "gxrom-l"
|
|
|
|
gxrom-m:
|
|
|
|
curl "https://www.hpcalc.org/hp48/pc/emulators/gxrom-m.zip" --output - | funzip > "gxrom-m"
|
|
|
|
gxrom-p:
|
|
|
|
curl "https://www.hpcalc.org/hp48/pc/emulators/gxrom-p.zip" --output - | funzip > "gxrom-p"
|
|
|
|
gxrom-r:
|
|
|
|
curl "https://www.hpcalc.org/hp48/pc/emulators/gxrom-r.zip" --output - | funzip > "gxrom-r"
|
2024-08-25 17:39:50 +02:00
|
|
|
|
|
|
|
# HP 49
|
|
|
|
rom.49g:
|
|
|
|
curl "https://www.hpcalc.org/hp49/pc/rom/beta1196.zip" --output rom-49g.zip
|
|
|
|
unzip rom-49g.zip rom.49g
|
|
|
|
rm rom-49g.zip
|