-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathreg_state
46 lines (43 loc) · 894 Bytes
/
reg_state
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
############################################################
# Kite: Architecture Simulator for RISC-V Instruction Set #
# Developed by William J. Song #
# Computer Architecture and Systems Lab, Yonsei University #
# Version: 1.12 #
############################################################
# Kite register state
# 1. Each line of state file defines "register name = data value".
# 2. Register state can define only 32 integer registers (e.g., x31).
# 3. x0 register is hard-wired to zero. Any non-zero values written to x0
# register is discarded.
x0 = 0
x1 = 0
x2 = 4096
x3 = 0
x4 = 0
x5 = 0
x6 = 0
x7 = 0
x8 = 0
x9 = 0
x10 = 21
x11 = 15
x12 = 0
x13 = 0
x14 = 0
x15 = 0
x16 = 0
x17 = 0
x18 = 0
x19 = 0
x20 = 32
x21 = 400
x22 = 720
x23 = 0
x24 = 0
x25 = 0
x26 = 0
x27 = 0
x28 = 0
x29 = 0
x30 = 0
x31 = 0