10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea4f10 commit 8541937Copy full SHA for 8541937
CHANGELOG.md
@@ -11,6 +11,7 @@
11
### Fixed
12
- Outdated code example in `README.md` is fixed.
13
- Removed all the use of deprecated code.
14
+- Wrong masking in `EventRingDequeuePointerRegister::event_ring_dequeue_pointer` is fixed.
15
16
## 0.8.2 - 2021-05-13
17
### Removed
src/registers/runtime.rs
@@ -197,7 +197,7 @@ impl EventRingDequeuePointerRegister {
197
/// Returns the address of the current Event Ring Dequeue Pointer.
198
#[must_use]
199
pub fn event_ring_dequeue_pointer(self) -> u64 {
200
- self.0 & 0b1111
+ self.0 & !0b1111
201
}
202
203
/// Sets the address of the current Event Ring Dequeue Pointer. It must be 16 byte aligned.
0 commit comments