Book Image

Computer Architecture with Python and ARM

By : Alan Clements
Book Image

Computer Architecture with Python and ARM

By: Alan Clements

Overview of this book

This comprehensive guide offers a unique and immersive learning experience by combining Python programming with ARM architecture. Starting with an introduction to computer architecture and the flow of data within a computer system, you’ll progress to building your own interpreter using Python. You’ll see how this foundation enables the simulation of computer operations and learn ways to enhance a simulator by adding new instructions and displaying improved results. As you advance, you’ll explore the TC1 Assembler and Simulator Program to gain insights into instruction analysis and explore practical examples of simulators. This will help you build essential skills in understanding complex computer instructions, strengthening your grasp of computer architecture. Moreover, you’ll be introduced to the Raspberry Pi operating system, preparing you to delve into the detailed language of the ARM computer. This includes exploring the ARM instruction set architecture, data-processing instructions, subroutines, and the stack. With clear explanations, practical examples, and coding exercises, this resource will enable you to design and construct your own computer simulator, simulate assembly language programs, and leverage the Raspberry Pi for ARM programming.
Table of Contents (18 chapters)
1
Part 1: Using Python to Simulate a Computer
Free Chapter
2
Chapter 1: From Finite State Machines to Computers
10
Part 2: Using Raspberry Pi to Study a Real Computer Architecture

Mathematical operators

Computers can perform the four standard arithmetic operations – addition, subtraction, multiplication, and division. For example, we can write the following:

X1 = a + b    Addition
X2 = a – b    Subtraction
X3 = a * b    Multiplication
X4 = a / b    Division

The symbol for multiplication is * (the asterisk) and not the conventional x. Using the letter x to indicate multiplication would lead to confusion between the letter x and x as a multiplication operator.

Division is more complicated than multiplication because there are three ways of expressing the result of x ÷ y. For example, 15/5 is 3, and the result is an integer. 17/5 can be expressed in two ways – as a fractional value (i.e., a float) 3.4, or as 3 remainder 2. In Python, the division operator provides a float result if the result is not an integer (e.g., 100/8 = 12.5).

As well as the...