General Purpose Registers

    One of the neato things that you will be fooling around most often with are called the registers. Registers are like variables (such as in BASIC) that are located within the CPU itself. These registers may hold a positive integer from 0 to 255 or from 0 to 65535. They can also hold negative integers from -128 to 127 or from -32768 to 32767. The registers are given names as follows:

 The registers stated above are considered general purpose registers, since they can basically be used to store whatever the user wants.

Return