Multiplying Numbers

Learn how to multiply the contents of registers and memory cells.

We'll cover the following...

Instructions to multiply numbers

To multiply two numbers in pseudocode, we write the following:

[b] <- [b] * [a]

This means that we multiply the number at the location ...