• 大小: 1.06MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-11
  • 语言: 其他
  • 标签: ics  csapp  hit  

资源简介

哈工大计算机系统实验六实验报告和一些实验材料,可以参考一些

资源截图

代码片段和文件信息

#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


评论

共有 条评论