写点什么

《计算机组成及汇编语言原理》阅读笔记:p128-p132

作者:codists
  • 2024-12-29
    广东
  • 本文字数:668 字

    阅读完需:约 2 分钟

《计算机组成及汇编语言原理》学习第 10 天,p128-p132 总结,总计 5 页。

一、技术总结

1.8088 organization and architecture

8088 处理器是 16 位电脑,寄存器是 16 位,数据总线(data bus)是 8 位,地址总线是 20 位。

(1)general-purpose register

8088 处理器(processor) 包含的通用寄存器有 8 个:AX, BX, CX, DX, SI, DI, BP, SP。


CX: 用于 loop counter。


AX/DX:用于 integer multiplication and division。


SI/DI:用于 high-speed memory transfer, SI: Source Index, DI: Destination Index。


BP: 用于 stack instructions for local function variables and function parameters。

(2)special-purpose register

8088 处理器包含的寄存器有:IR,IP(PC)、segment register(DS, CS, SS, ES), FLAGS register。


DS:Data Segment


CS:Code Segment


SS:Stack Segment


ES:Extra Segment

二、英语总结(生词:1)

1.stringent

(1)stringent: stringgere("to compress, contract, bind or draw tight")


adj. being extremely limiting, strict。


p131, This would appear to place stringent limits on the size of programs; in particular, no program could be larger than 64K.

三、其它

我们平时所说的是 32 位或者 64 位电脑是指电脑的寄存器是(register)是 32 位 或者 64 位的。

四、参考资料

1. 编程

(1) Patrick Juola,《计算机组成及汇编语言原理》:https://book.douban.com/subject/3069889/

2. 英语

(1) Etymology Dictionary:https://www.etymonline.com


(2) Cambridge Dictionary:https://dictionary.cambridge.org


欢迎搜索及关注:编程人(a_codists)

发布于: 刚刚阅读数: 2
用户头像

codists

关注

公众号:编程人 2021-01-14 加入

Life is short, You need Python

评论

发布
暂无评论
《计算机组成及汇编语言原理》阅读笔记:p128-p132_计算机组成及汇编语言原理_codists_InfoQ写作社区