Fix simple_rw_reg.rdl so that the test passes

The register was defined as a 64-bit register but the test was written
under the assumption it's a 32-bit register. Furthermore, the hardware
write-enable flag had to be set since all values would otherwise be
overwritten immediately.
This commit is contained in:
Dennis Potter 2021-10-24 15:43:44 -07:00
parent c4964e0c57
commit 6719d21423
Signed by: Dennis
GPG Key ID: 186A8AD440942BAF
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
addrmap simple_rw_reg {
reg {
regwidth = 64;
field {sw=rw; hw=rw;} f1 [15:0];
field {sw=rw; hw=rw;} f2 [31:16];
regwidth = 32;
field {sw=rw; hw=rw; we;} f1 [15:0];
field {sw=rw; hw=rw; we;} f2 [31:16];
} register_0 [2];
};