1
0

RegFieldDesc: mark some more registers as volatile

This commit is contained in:
Megan Wachs
2018-03-09 15:10:43 -08:00
parent 7458378a4a
commit 0fcacd37df
2 changed files with 7 additions and 5 deletions

View File

@ -35,7 +35,7 @@ trait ExampleModule extends HasRegMap
Some(RegFieldDesc("pending", "Pending: Example of a special (W1ToC) Register. " +
"Writing a bit here causes it to be reset to 0. " +
"The bits are set when the corresponding bit in 'state' is high.",
reset=Some(0xF)))))
reset=Some(0xF), volatile=true))))
)
}