CSAPP
文章平均质量分 82
echo_xiao9
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ICS-lab4 simulator
ICS-lab4 代码下载 ICS-lab4%200064526ccef24a2aabe095e1eb2e217b/lab4.pdf GitHub https://github.com/echo-xiao9/SJTU-SE/tree/main/SE118_ICS:CSAPP%20(CMU%2015-213)/lab4 指令集合 程序测试指令 $./yat -s <ins_name> (e.g. ./yat -s rrmovq) 该命令将y64-ins-bin目录中的特定<ins_name原创 2021-04-06 09:02:39 · 1042 阅读 · 0 评论 -
[CSAPP] hw1-5所需函数
#include <iostream> using namespace std; typedef unsigned char *byte_pointer; void show_bytes(byte_pointer start, size_t len){ size_t i; for (i=0; i<len; i++) { printf("%.1x",start[i]); } printf("\n"); } int f1 (int x, int原创 2020-11-02 21:11:17 · 280 阅读 · 0 评论 -
[CSAPP]有符号到无符号的转化
#include <iostream> using namespace std; typedef unsigned char *byte_pointer; void show_bytes(byte_pointer start, size_t len){ size_t i; for (i=0; i<len; i++) { printf("%.1x",start[i]); } printf("\n"); } int main(int argc,原创 2020-11-01 09:00:20 · 170 阅读 · 0 评论
分享