
计算机系统
文章平均质量分 97
学分
apprentice of CS
展开
-
深入理解计算机系统-第一章
学好计算机系统这门课,可以写出更好的代码。话不多说,我们开始吧!我们从这个简单的hello.c文件来看看它的生命周期。//This is our hello.c #include <stdio.h>int main(){ printf("Hello world,fuck u man!\n"); return 0;}源程序实际上就是一个由0/1组...原创 2018-09-03 17:02:29 · 2445 阅读 · 0 评论 -
深入理解计算机系统-第二章
信息存储:8 bits constitutes one byte,which is the smallest available storage unit。机器级程序将内存视为一个非常大的字节数组,称为虚拟内存visual storage。内存中每一个字节都由一个数字来唯一标识,就是address。And the union of all the possible address consit...原创 2018-09-12 19:06:13 · 628 阅读 · 0 评论 -
CS213 ICS of CMU Part-1 Overview
Overview and Big picture:Usage of system knowledge:1.How hardware and software combine to support the application programs?2.How to best use ur resources as a programmer?3.How to find and term...原创 2018-10-01 11:41:11 · 407 阅读 · 0 评论 -
深入理解计算机系统 第三章 程序的机器级表示
Preview、计算机的结构体系:(每条线怎么走的都能理解最好,笔者不多阐述)“通俗一点,主存相当于图书馆的书架,GPRs相当于宿舍的书架,你要在宿舍学习这本书必然是要从书架上把书拿出来才用”——————————————————————————————分界线首先我们温习一下程序的生成过程,用hello.c来举个例子:在整个编译的过程中,编译器会完成大部分工作,将把用C语...原创 2018-11-08 15:17:02 · 1941 阅读 · 0 评论