本书包括两方面的内容:计算机底层结构;高级语言编程及编程方法学。书中阐述了LC-3体系结构的设计,并配套开发了LC-3模拟器供学生使用。为加深学生对编程及其方法学的理解,本书选用了C语言来进行讲解。本书采用了“驱动式”的自底向上方法,即先给学生一个整体结构,然后自底向上地建立起相关的知识。同样,在每个子单元中,也采用相同的驱动式教学方法。在每个学习阶段,都基于之前已学的知识介绍新的概念。经验告诉我们,这种学习方法更多地强调理解而不是记忆。通过本书的学习,学生的理解能力将获得很大的提高,因为他们循序渐进地了解了构建计算机的全部过程。
Preface
Preface to the First Edition
1 Welcome Aboard
2 Bits,Data Types,and Operations
3 Digital Logic Structures
4 The von Neumann Model
5 The LC-3
6 Programming
7 Assembly Language
8 I/O
9 TRAP Routines and Subroutines
10 And,Finally…The Stack
11 Introduction to Programming
12 Variables and Operators
13 Control Structures
14 Functions
15 Testing and Debugging
16 Pointers and Arrays
17 Recursion
18 I/O in C
19 Data Structures
A The LC-3 ISA
B From LC-3 to x86
C The Microarchitecture of the LC-3
D The C Programming Language
E Useful Tables
F Solutions to Selected
Exercises