首页 > 编程语言 >《计算机组成及汇编语言原理》阅读笔记:p116-p120

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

时间:2024-12-26 23:41:42浏览次数:3  
标签:flat apartment p116 p120 汇编语言 condominium program condo

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

一、技术总结

1.CPU优化

(1)increase overall performance number

例如:16位电脑提升到32位电脑。

(2)multiprocessing

One way to make computers more useful is to allow them to run more than one program at a time.——不是很确定这里指的是不是“多进程”。

Rather than relying on the good citizenship of each user program, the solution is to create a special überprogram called the operating system, whose primary job is to act as a program control program, as in “program to control [other] programs,” and enforcer of the security rules.——这种方式的实现是通过操作系统来进行的。

(3)Instruction Set optimization

(4)pipelining

(5)Superscalar Architecture

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

1.vacation condominium

(1)condo: condominium 的缩写

表示公寓的常见单词有 apartment/flast,condo。apartment/flat和 condo的区别是:apartment/flat的住户对房屋没有所有权,condao的住户对房屋有所有权。apartment 和 flat 的区别是 apartment 在美式英语中用得比较多,flat 在英式英语中用得比较多。

p116, As with time-sharing a vacation condominium, time is divided into slices (weeks for the condo, perhaps milli- or microseconds for the CPU), and you are allowed to use the equipment for one slice.

刚开始看这句话很懵,“vacation condominium” 和 CPU 有什么关系呢?查了一下 "as with" 的意思 “in the same way as”——好吧,对这个词没理解对,刚开始理解成了“with”,其实是 “like” 的意思,作者这是在类比。

2.citizenship

(1)citizenship: citizen + -ship

(2)citizen: cite(city) + -ain(-ian)

u.Citizenship is also carrying out the duties and responsibilities of a member of a particular society.

p117, Rather than relying on the good citizenship of each user program, the solution is to create a special überprogram called the operating system, whose primary job is to act as a program control program, as in “program to control [other] programs,” and enforcer of the security rules.

三、其它

今天没有什么想说的。

四、参考资料

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)

标签:flat,apartment,p116,p120,汇编语言,condominium,program,condo
From: https://www.cnblogs.com/codists/p/18634399

相关文章

  • 002. 队列安排(洛谷P1160)
    002.队列安排(洛谷P1160)题目描述一个学校里老师要将班上\(N\)个同学排成一列,同学被编号为\(1\simN\),他采取如下的方法:先将\(1\)号同学安排进队列,这时队列中只有他一个人;\(2\simN\)号同学依次入列,编号为\(i\)的同学入列方式为:老师指定编号为\(i\)的同学站在......
  • 《计算机组成及汇编语言原理》阅读笔记:p86-p115
    《计算机组成及汇编语言原理》学习第6天,p86-p115总结,总计20页。一、技术总结1.ifstatement2.loop在许多编程语言中,有类种循环:一种是在程序开头检测条件(testthecondition),另一种是在程序末尾检测条件。3.Collatzconjecture(考拉兹猜想)对于每一个正整数,如果它是......
  • 《计算机组成及汇编语言原理》阅读笔记:p48-p81
    《计算机组成及汇编语言原理》学习第4天,p48-p81总结,总计34页。一、技术总结1.CISCvsRISCp49,complexinstructionsetcomputingForexample,acomplexinstructionsetcomputing(CISC)chipmaybeabletomovealargeblockofdata,perhapsastringconsist......
  • 汇编语言中的寄存器(8086)
    一:通用寄存器1.数据寄存器AX,BX,CX,DX,这四个寄存器在操作中可以存放各种类型的数据,但是他们存放的数据都有一定的规范,当我们使用loop指令时,他的循环次数受到CX里面数据的影响,CX里面存了什么数,就循环多少次,每循环一次又会将CX里面的值减一,当我们使用MUL和DIV指令时,他们都是单......
  • 《计算机组成及汇编语言原理》阅读笔记:p28-p47
    《计算机组成及汇编语言原理》学习第3天,p28-p47总结,总计20页。一、技术总结1.VirtualMachine2.stack3.Thefetch-executeCycle在控制单元(ControlUnit,CU)里面有一个指令寄存器(InstructionRegister,IR)和一个程序计数器(ProgramCounter,PC)。PC保存下次要访问......
  • 学习汇编语言的第三天
     内容概述通过学习完栈的简单原理,以及相应的ss,sp寄存器的使用。现在已经学习了三种“段”,分别是数据段,代码段,栈段。对于我这种小白极其容易混淆,于是打算进行区分比较。(手把手投喂)1.数据段①对应需要的寄存器:DS②作用:通过将段地址存放到DS,输入访问内存单元的指令,CPU就将我......
  • 《计算机组成及汇编语言原理》阅读笔记:p9-p27
    《计算机组成及汇编语言原理》学习第2天,p9-p27总结,总计19页。一、技术总结1.quantumphysics(量子物理学)(1)quantum(量子)quantum的本意是:c.thesmallestamountofsth(量子)。Inphysics,aquantumistheminimumamountofanyphysicalentity(physicalprope......
  • 《计算机组成及汇编语言原理》阅读笔记:p1-p8
    《计算机组成及汇编语言原理》学习第1天,p1-p8总结,总计8页。一、技术总结1.Intel8088microprocessor(微处理器),1979-1988。2.MS-DOSMicrosoftDiskOperatingSystem的缩写,是一个操作系统(operatingsystem)。3.Moore'sLaw&Moore'ssecondlaw(1)Moore'slawThe......
  • 汇编语言
    图书:http://c.biancheng.net/view/3378.html视频:https://www.bilibili.com/video/BV1mt411R7Xv?from=search&seid=7216001317872532936思维导图:https://pan.baidu.com/s/1HAGT3w0dszhZhJf_a_ccHg提取码:9pmuXMind打开方式?习题答案:https://blog.csdn.net/heiyeleng/arti......
  • 学习汇编语言的第二天
    一.寄存器上节已经简要说明了寄存器这一概念,本次就好好聊聊。由于寄存器在CPU内部,依据CPU不同的指令完成不同的操作,有AX,BX,CX,DX,SI,DI,SP,BP,IP,CS,DS,ES,PSW,SSl类型。本次就重点介绍CS,IP。对于CS,IP的使用,就要谈到上节所说的地址,CS,IP与地址的指向密切相关,就像c语言所学......