drob518 9 hours ago

My dad worked for HP from the mid-1970s through the mid-1990s. Needless to say, I used HP calculators in high school and college. The best things about having an HP calculator were the solid physical construction (the buttons on the 11C and 15C were awesome), the accuracy, and the fact that whenever your classmates asked to borrow your calculator they would recoil in horror when you asked them whether they knew RPN. Nobody borrowed my calculator. Anyway, I love this project.

  • phkahler 8 hours ago

    I still have my dads old HP with the glowing red letters and all the functions. Not sure if we still have the charger. Not sure the battery is any good, but the calculator worked fine last time it was turned on decades ago. Any idea if this can be made to function again?

  • dhosek 6 hours ago

    My biggest challenge the first time I ever used an HP calculator was less RPN than the syntax of it. I thought I had to hit enter after every token so I typed, e.g., 2⎆3⎆+⎆ rather than 2⎆3+. Needless to say, this did not work as expected, but being simultaneously vain and bashful, I was unwilling to ask for help and did almost all the arithmetic for my freshman physics class by hand.

  • bsder 6 hours ago

    > the buttons on the 11C and 15C were awesome

    What is the trick to engineering HP calculator keys? Nobody gets keys right like the old HP calculators.

    In this age of 3D printing and fast prototypes, we really ought to be able to crack this.

  • kabdib 4 hours ago

    "Can I borrow your calculator"

    "Sure!" (hands over HP-25C)

    <start counting seconds...>

    "Hey, where's the equals key?"

random__duck 1 hour ago

I wish I could give this project more respect than simply saying it is awesome and contraz.

Also, let us all hate on denomals! :)

russdill 3 hours ago

Cool project

Really hoping that ghidra can add support for non-byte aligned memory regions some day. So many cool 4-bit architectures out there and attempting to shoehorn them into ghidra produces not great results

NetMageSCW 4 hours ago

This is a brilliant project. (My DM42 returned 9 exactly.)

Blog post 6 had an error where the picture of a HP-71B (I have one and used its Forth/Assembler ROM manual to write the first HP-48 ROM decoder) where the caption says it is a 48GX (both used a Saturn CPU).

wewtyflakes 9 hours ago

If the CPU is nibble-oriented, wouldn't that mean that that is its byte size?

  • hvs 8 hours ago

    A byte is always 8 bits. The word you're looking for is `word-size` which, in this case would be 4 bits.

    • jlokier 8 hours ago

      A byte is not always 8 bits on old machines, though it is standardised as 8 bits nowadays.

      This is why network RFCs talk of "octets", to avoid the ambiguity. Octets are always 8 bits.

      https://en.wikipedia.org/wiki/Octet_(computing)

      • duped 6 hours ago

        The definition of a byte today is different than the definition of byte when those machines were manufactured. Just like how 'foot' is now standardized(*)

        (* technically, a 'foot' is not a standard unit of measure but that's due to the long history of 'foot' not being standardized until relatively recently)

        • fc417fc802 3 hours ago

          No. 8 bit bytes are the de facto standard but that is in no way official nor the definition of the word. You can find modern niche projects with non-8-bit bytes (and by extension non-32 or 64 bit words).

      • djmips 6 hours ago

        I didn't realize that there was a 16 bit name called a 'chomp' haha. But more formally hextet.

    • quantified 6 hours ago

      I think you might be missing the attempt at humor.

  • joemi 8 hours ago

    Are you trying to make a pun with byte/bite relating to nibble? Because that's actually where the term nibble (referring to 4 bits) comes from, so I'm not sure such a pun even counts as a pun anymore. Or am I misinterpreting your comment?

    • robinsonb5 7 hours ago

      When did we stop spelling it "nybble"?

      • quantified 6 hours ago

        I was wondering this as well. Probably when a new wave of people discovered the concept in the absence of the older wave? By contrast, "byte" has been in use continuously and widely.

      • zamadatix 5 hours ago

        "Nibble" may well have always been in use by folks, and nybble may have actually come later. At the very least, references to each spelling being in use exist for the last ~60 years.

        The first book match I get for "nibble" near "byte" is in the 1964 "System 360 Assembler Language" by Don H. Stabley uses nibble. The earliest match I can find for "nybble" in relation to computers was the 1968 "Encyclopedia of library and information science". Nybble (and likely nibble) itself doesn't seem to have taken off until around the mid 1970s https://books.google.com/ngrams/graph?content=nybble&year_st...

        References to the coining of the term in 1958 of course don't provide a textual source.

fitsumbelay 5 hours ago

Love this and love seeing people building their own hardware/software tools. I hope to carve out the time soon to be one. Calculators are a perfect project

are there videos available?

gdevic 10 hours ago

The core question: how did HP's scientific calculators actually work at the gate level? That rabbit hole led to building one from scratch.

The architectural decision everything else follows from: a decimal calculator should store numbers as BCD — one decimal digit per 4-bit nibble. A standard byte-oriented CPU (Z80, 6502) fights that layout constantly. So I designed a small custom CPU in Verilog where 4 bits is the natural data width and memory is nibble addressable.

What the project covers:

- Custom CPU: Harvard architecture, 12-bit ISA, 8-state execution FSM, hardware stack guard with a FAULT state for microcode debugging

- CORDIC for trig functions, verified to 14 significant digits

- Two-pass assembler in Python (~700 lines)

- Verilator + Qt framework: same Verilog source runs in simulation, as a desktop GUI debugger, as WebAssembly, and on real hardware

- Scripting language on top of the microcode for adding functions without touching hardware

- Custom PCB (EasyEDA/JLCPCB), battery, charging circuit

Write-up: https://baltazarstudios.com

Hackaday: https://hackaday.com/2026/05/13/build-the-cpu-then-build-the...

  • VLM 9 hours ago

    Ironically the Z80 is a nibble ALU. That's why its so slow compared to the competition, an 8 bit add on a "2 MHz" Z80 takes as much clock time as a 8 bit add on a "1 MHz" 6809.

  • djmips 6 hours ago

    At least the 6502 has a BCD mode built in!

    • quantified 5 hours ago

      I'd like to amplify this. Decimal math using nibbles containing 0 through 9 was standard operating procedure, one of the things that made the 6502 nice. Unfortunately you had to use a short loop to convert between 2s complement and BCD.

    • billforsternz 2 hours ago

      The Z80 does have a DAA (decimal adjust arithmetic) instruction to facilitate BCD arithmetic. I don't think I ever used it in my Z80 years and I'm not familiar with the details. Sadly I have much less experience with the 6502, I didn't even know it had a BCD mode.

  • mountain_peak 6 hours ago

    Very impressive, and obviously a labour of love! As a calculator and SystemVerilog enthusiast, it's wonderful to see a project such as this come to fruition - congratulations!

    I'm holding in my hand a 4-bit Von Neumann Mostek MK50310N that my father and I used to use to build calculators long ago. Although Mostek made chips for HP (such as the HP-35), they weren't commercially available, but the 50310 was. We could only dream of a project such as yours. I was happy when the "open source" NumWorks was released, but this project aligns more with my interests.

    Will definitely install the Qt simulator - would be even better to build one IRL!

    • kristianp 5 hours ago

      Re Numworks, at $125 for a calculator, you've got to really love the idea.

      • mountain_peak 5 hours ago

        I didn't think it was that much, but I checked my receipt from 2017, and sure enough it was!

        I have in my hand (I guess I like using that phase today), my father's original receipt for the HP-45 (it's with the box and manual). $299.00 in 1975, which is $1,850 today(!!!).

        Relatively speaking, electronics are very, very cheap today compared to what they used to be. Still appreciate that my $30 CASIO does 90% of that the NumWorks can do, but I'm happy to support upstarts such as NumWorks.