Email or username:

Password:

Forgot your password?
Top-level
Ken Shirriff

Multiplication uses a 4-bit hardware loop counter and the special F1 flag. Here's what those features look like on the 8086 die. I removed the metal for this photo to show the silicon and the polysilicon wiring underneath.

4 comments
Ken Shirriff

Instead of a loop, modern processors use a bunch of adders arranged in a special tree to perform a multiplication in a single clock cycle. The 8086 was very slow in comparison, taking up to 133 clock cycles for a 16-bit multiplication.

Ken Shirriff

For more information on multiplication in the 8086 and lots more microcode analysis, see my latest blog post righto.com/2023/03/8086-multip

vruz

@kenshirriff This is a genuinely excellent post. Thanks Ken!

[DATA EXPUNGED]
Ken Shirriff

@kentindell Some computers, such as the Xerox Alto, let programmers write in microcode, but there are three problems with this. First, writing in microcode is very difficult because it is extremely low-level. Second, if you change the computer's internal architecture, the microcode changes and you need to rewrite it. Finally, rewritable microcode in RAM can have performance problems.

Go Up