• 计算机系统概论(英文版·原书第3版)
图书条目标准图
21年品牌 40万+商家 超1.5亿件商品

计算机系统概论(英文版·原书第3版)

68.7 4.9折 139 全新

仅1件

河北保定
认证卖家担保交易快速发货售后保障

作者耶尔·N. 派特;桑杰伊·J. 派尔特

出版社机械工业出版社

出版时间2020-10

版次1

装帧其他

货号9787111666318

上书时间2024-10-22

尚贤文化保定分店的书店

已实名 已认证 进店 收藏店铺

   商品详情   

品相描述:全新
图书标准信息
  • 作者 耶尔·N. 派特;桑杰伊·J. 派尔特
  • 出版社 机械工业出版社
  • 出版时间 2020-10
  • 版次 1
  • ISBN 9787111666318
  • 定价 139.00元
  • 装帧 其他
  • 开本 16开
  • 纸张 胶版纸
  • 页数 796页
【内容简介】
-
【作者简介】


耶尔n.帕特,    得克萨斯大学奥斯汀分校电子与计算机工程系教授。他是美国工程院院士,ieee和acm会士。他在计算机体系结构的研究和方面贡献很好,曾荣获ieee emannuel r.piore奖、ieee/acm eckertmauchiv奖、ieee w.w.mcdowell奖,以及acm karlv.karitrom杰出教育家奖、得克萨斯奖等众多奖项。
【目录】


preface iv

1 wele aboard 1

1.1 what we will tryto do 1

1.2 how we will get there 1

1.3 two recurring themes 3

1.3.1 the notion of abstraction 3

1.3.2 hardware vs. software 5

1.4 a puter system 7

1.4.1 a (very) little history for a(lot) better perspective 8

1.4.2 the parts of a puter system 10

1.5 two very important ideas 11

1.6 putersas universal putational devices 12

1.7 how do we getthe electrons to do the work? 14

1.7.1 the statement of the problem 14

1.7.2 the algorithm 16

1.7.3 the program 16

1.7.4 the isa 17

1.7.5 the microarchitecture 18

1.7.6 the logic circuit 19

1.7.7 the devices 19

exercises 20

2 bits, data types, and operations 25

2.1 bits and data types 25

2.1.1 the bitas the unit of information 25

2.1.2 data types 26

2.2 integer data types 26

2.2.1 unsigned integers 26

2.2.2 signed integers 27

2.3 2’s plement integers 29

2.4 conversion between binary and decimal 31

2.4.1 binary to decimal conversion 31

2.4.2 decimal to binary conversion 32

2.4.3 exten conversion to numbers with fractional parts 33

2.5 operations on bits—part i: arithmetic 34

2.5.1 addition and subtraction 34

2.5.2 sign-extension 36

2.5.3 overflow 36

2.6 operations on bits—part ii:logical operations 38

2.6.1 alogical variable 38

2.6.2 the and function 38

2.6.3 the or function 39

2.6.4 the not function 40

2.6.5 the exclusive-or function 40

2.6.6 de morgan’s laws 41

2.6.7 the bit vector 42

2.7 other representations 43

2.7.1 floating point data type (greater range, less precision) 43

2.7.2 ascii codes 47

2.7.3 hexadecimal notation 48

exercises 49

3 digital logic structures 59

3.1 the transistor 59

3.2 logic gates 61

3.2.1 the not gate (inverter) 61

3.2.2 or and nor gates 62

3.2.3 why we can’t simply connect p-type to ground 64

3.2.4 and and nand gates 65

3.2.5 gates with more than two inputs 66

3.3 binational logic circuits 67

3.3.1 decoder 67

3.3.2 mux 68

3.3.3 a one-bit adder (a.k.a.a full adder) 69

3.3.4 the programmable logic array()71

3.3.5 logical pleteness 72

3.4 basic storage elements 73

3.4.1 the r-s latch 73

3.4.2 the gated d latch 74

3.5 the concept of memory 75

3.5.1 address space 75

3.5.2 addressability 76

3.5.3 a22-by-3-bit memory 76

3.6 sequential logic circuits 78

3.6.1 a simple example: the bination lock 79

3.6.2 the concept of state 80

3.6.3 the finite state machine and its state diagram 82

3.6.4 the synchronous finite state machine 85

3.6.5 the clock 86

3.6.6 example: a danger sign 87

3.7 preview of ing attractions: the data path of the lc-3 93

exercises 95

4 the von neumann model 121

4.1 basic ponents 121

4.1.1 memory 122

4.1.2 processing unit123

4.1.3 inputand output 124

4.1.4 control unit 125

4.2 the lc-3: an examplevon neumann machine 125

4.3 instruction processing 127

4.3.1 the instruction 127

4.3.2 the instruction cycle (not the clock cycle!) 130

4.3.3 changing the sequence of execution 132

4.3.4 control of the instruction cycle 134

4.3.5 halting the puter (the trap instruction) 136

4.4 our first program: a multiplication algorithm 137

exercises 139

5 the lc-3 145

5.1 the isa: overview 145

5.1.1 memory organization 146

5.1.2 registers 146

5.1.3 the instruction set147

5.1.4 opcodes 149

5.1.5 data types 149

5.1.6 addressing modes 150

5.1.7 condition codes 150

5.2 operate instructions 151

5.2.1 add, and, and not 151

5.2.2 immediates 152

5.2.3 the lea instruction (although not really an operate) 154

5.3 data movement instructions 155

5.3.1 pc-relative mode 156

5.3.2 indirect mode158

5.3.3 base+offset mode 159

5.3.4 an example 160

5.4 control instructions 161

5.4.1 conditional branches162

5.4.2 two methods of loop control165

5.4.3 the jmp instruction 169

5.4.4 the trap instruction 169

5.5 another example: counting occurrences of a character 170

5.6 the data path revisited 173

5.6.1 basic ponents of the data path 175

5.6.2 the instruction cycle specificto the lc-3 176

exercises 177

6 programming 203

6.1 problem solving 203

6.1.1 systematic deition

……

点击展开 点击收起

—  没有更多了  —

以下为对购买帮助不大的评价

此功能需要访问孔网APP才能使用
暂时不用
打开孔网APP