Skip to content
Permalink
015bc11b40
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
49 lines (47 sloc) 886 Bytes
/**
* University of Connecticut
* CSE 5302 / ECE 5402: Computer Architecture
* Fall 2021
*
* Programming Assignment 4: Pipelined riscy-uconn Simulator With Scoreboard
*
* riscy-uconn: register_map.c
*
* DO NOT MODIFY THIS FILE
*
*/
#include "register_map.h"
const char* register_map[] = {
[0] = "zero",
[1] = "at",
[2] = "v0",
[3] = "v1",
[4] = "a0",
[5] = "a1",
[6] = "a2",
[7] = "a3",
[8] = "t0",
[9] = "t1",
[10] = "t2",
[11] = "t3",
[12] = "t4",
[13] = "t5",
[14] = "t6",
[15] = "t7",
[16] = "s0",
[17] = "s1",
[18] = "s2",
[19] = "s3",
[20] = "s4",
[21] = "s5",
[22] = "s6",
[23] = "s7",
[24] = "t8",
[25] = "t9",
[26] = "k0",
[27] = "k1",
[28] = "gp",
[29] = "sp",
[30] = "fp",
[31] = "ra",
};