Question I'm looking for a DIP-40 processor with 64-bit architecture ?

Jul 7, 2022
8
0
10
Hello,
Not sure if it is possible, but is there a DIP-40 processor with a 64-bit architecture? I found 32-bit DIP-40s, but not 64-bit. Thank you.
 
It's possible, it'll just be really slow due to needing to spend multiple cycles on I/O. For instance if you were to have a pinout similar to the original 8086, you'd spend 4 cycles sending out the address, then another at least 4 cycles sending or receiving data.

EDIT: If you were looking at something like a Propeller CPU, then you'd still spend 2 cycles at least.

Also I realized with the address, I realized you can't really send out the address in multiple cycles because most things aren't designed to handle constructing the address through multiple cycles. If the ISA allows for a higher address space range than what you have for I/O, then the memory controller could just not send out the upper bits.

For anyone else wondering if what I'm saying is possible, examples of processors that internally are wider than their databus include the 8088 (16-bit CPU using an 8-bit data bus) and the Motorola 68K (32-bit CPU using an 16-bit data bus)
 
Last edited: