资源简介
哈工大计算机系统实验六实验报告和一些实验材料,可以参考一些
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “cachelab.h“
//#define DEBUG_ON
#define ADDRESS_LENGTH 64
/* Type: Memory address */
typedef unsigned long long int mem_addr_t;
/* Type: Cache line
LRU is a counter used to implement LRU replacement policy */
typedef struct cache_line {
char valid;
mem_addr_t tag;
unsigned long long int lru;
} cache_line_t;
typedef cache_line_t* cache_set_t;
typedef cache_set_t* cache_t;
/* Globals set by command line args */
int verbosity = 0; /* print trace if set */
int s = 0; /* set index bits */
int b = 0; /* block offset bits */
int E = 0; /* associativity */
char*
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6652 2018-12-03 16:40 实验六1170500704魏孝文\csim.c
文件 704317 2018-12-04 12:54 实验六1170500704魏孝文\HITICS-lab6实验1170500704魏孝文-converted.pdf
文件 577536 2018-12-04 12:47 实验六1170500704魏孝文\HITICS-lab6实验1170500704魏孝文.doc
文件 10028 2018-12-04 01:31 实验六1170500704魏孝文\trans.c
目录 0 2018-12-04 12:55 实验六1170500704魏孝文
----------- --------- ---------- ----- ----
1298533 5
相关资源
- Easyx图形库(打开<graphics.h>的头文
- source code for Computer Graphics - using Open
- CSAPP malloc lab答案满分
- 完整版csapp proxy lab 满分原创北大cmu
- STMicroelectronics flash loader
- Hitachi 日立原厂硬盘检测工具]
- creator连线题
- 64位系统上PHOENICS实现并行的方法
- elasticSearchPPT
- Qt开发画图软件 QgraphicsScene
- CSAPP习题答案
- csapp lab malloclab
- ArcGIS桌面工具--矢量数据导入elastics
- A trip through the Graphics Pipeline
- elasticsearch-中文文档-6.4
- elasticsearch+django搜索框架
- NordicSemiconductor.nRF_DeviceFamilyPack.8.11.
- Maticsoft.Common
- Managed DirectX 9(中文版)
- bios.h graphics.h代码
- NordicSemiconductor.nRF_DeviceFamilyPack(8.1
- elasticsearch漏洞检测工具V1.0.zip
- 深入理解ElasticSearch第一版随书源代码
- Qt的graphics View框架(中文
- The Art of Hardware Architecture: Design Metho
- 哈工大计算机系统实验lab4
- 哈工大计算机系统实验2程序以及实验
- comsol Multiphysics 4.2安装镜像 ISO+教程
- PowerPC Architecture Specification -- Book III
- 复旦961考研ppt数据结构 csapp 软件工程
评论
共有 条评论