diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-12-09 01:43:23 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-12-09 01:43:23 -0600 |
| commit | 02f76bae32e295bf1da04e38dfa12dfbc5832aec (patch) | |
| tree | 4fd1d1c68a7a81a5b479437537e29ae5121a33b2 /tb/sim/cpuid.py | |
| parent | b2b2d5124db13714ed82181c9558568d908dfa2a (diff) | |
Implement CP15 ID register
Diffstat (limited to '')
| -rw-r--r-- | tb/sim/cpuid.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tb/sim/cpuid.py b/tb/sim/cpuid.py index feb6b68..15c9529 100644 --- a/tb/sim/cpuid.py +++ b/tb/sim/cpuid.py @@ -1,2 +1,6 @@ def final(): - assert_reg(r0, 0x41018100); + assert_reg(r0, 0x41018100) + assert_reg(r1, 0x0310a10a) + assert_reg(r2, 0x00000000) + assert_reg(r3, 0x00000001) + assert_reg(r4, 0x00000000) |
