Post Reply 
Online HP-35 Emulator - First scientific pocket calculator from 1972
12-25-2023, 11:59 AM
Post: #3
RE: Online HP-35 Emulator - First scientific pocket calculator from 1972
This is a very nice addition to the list of emulators of HP calculators.
Thank you very much.

I noticed a bug though: when pressing the 0 key it performs multiplication.
Both keys are mapped to the same number 30:
Code:
        } else if(e.keyCode == 48 || e.keyCode == 96) { //0
          pendingClicks.push(30);
Code:
        } else if(e.keyCode == 42 || e.keyCode == 106) { //*
          pendingClicks.push(30);
That should probably be 36 instead.

How hard would it be to emulate other processors?
It would be great to have e.g. the HP-15C running in a browser as well.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Online HP-35 Emulator - First scientific pocket calculator from 1972 - Thomas Klemm - 12-25-2023 11:59 AM



User(s) browsing this thread: 3 Guest(s)