Simulates the CPU of an HP-45 calculator. Can be ported to embedded project like 8051, AVR, ARM CM3, etc.
- Written in plain C: platform independent.
- All memory and CPU states are wrapped in struct: supports multi-instance.
- Easy to use: only 5 functions in user interface.
hp45_key_downandhp45_key_up: notify CPU that a key is pressed/released.hp45_init: initializes instance struct.hp45_run: performs a single step.
To simulate the HP-45 at actual speed:
- call
hp45_initonce - call
hp45_runonce per 286us (precisely speaking, 35 times per 10ms). - (optional) call
make_displayto convert CPU registers into display buffer for LED scanning.