Page 1 of 1

Calculator for learning

Posted: Fri Jan 19, 2024 3:17 pm
by epson
I want to create a calculator for educational purposes so that students can demonstrate how the calculator works. Now I'm just thinking what is the best way, whether to use a TTL circuit or a processor. I have collected several schematics from real computers from the past, such as the HP9815 with the Motorola 6800 CPU or various vintage computers with TTL circuits. What is the best way?

Re: Calculator for learning

Posted: Tue Jan 23, 2024 8:27 pm
by Carlos
If the calculator is to be aimed at learning hardware such as adders, multipliers and logic, then building the calculator from TTL or CMOS 4000 digital circuits is the way to go. If the computer is intended to be more focused on software development such as mathematical calculation algorithms, then it is better to use a standard base 8-bit CPU, for example 8085, 8032 or 6800 etc. In my opinion the structure could be like a Heathkit ET- 3400 or a single board computer with LED display and keyboard. But there are many possible solutions.

Re: Calculator for learning

Posted: Mon Jan 29, 2024 9:32 am
by Malik
Epson, you could create something like the famous ET-3400 learning kit. It was based on the Motorola 6800, sold by Heathkit.

Re: Calculator for learning

Posted: Tue Feb 27, 2024 3:27 pm
by Pindus
Why not use Vintage 8086 and Coproc 8087? So don't make a complete PC-XT. Just add keyboard, some SRAM and a display. Instead of EPROM, use EEPROM. With 8087 you get better calculation results than with a microcontroller.
:D

Re: Calculator for learning

Posted: Wed Feb 28, 2024 8:45 am
by Blackburg
Pindus is right. Use an 8086/8087 SBC and add only the driver to the LED or LCD display. The 8087 has various math and calculus options. It's best to program it in assembler.

Re: Calculator for learning

Posted: Sun Oct 13, 2024 8:20 am
by HPBSD
I want to convert the vintage desktop calculator HP9825 into a learning 68K machine.