pub enum EventKind {
PpuWrite,
ApuWrite,
MapperWrite,
PpuRead,
}Expand description
v1.1.0 beta.2 (Workstream C, T-110-C3) — the class of a captured CPU write.
One per event-viewer timeline entry: PPU $2000-$3FFF, APU $4000-$4017,
or mapper $4020-$FFFF, tagged (in EventRec) with the PPU position at
the moment of the write.
Variants§
PpuWrite
A $2000-$3FFF PPU-register write.
ApuWrite
A $4000-$4017 APU / I/O-register write.
MapperWrite
A $4020-$FFFF mapper-register write.
PpuRead
A $2000-$3FFF PPU-register read (v1.5.0 Workstream A2 — the graphical
PPU Event Viewer draws reads as well as writes, so the read/write heatmap
- the register-access table can show both directions).
Implementations§
Trait Implementations§
impl Copy for EventKind
impl Eq for EventKind
impl StructuralPartialEq for EventKind
Auto Trait Implementations§
impl Freeze for EventKind
impl RefUnwindSafe for EventKind
impl Send for EventKind
impl Sync for EventKind
impl Unpin for EventKind
impl UnsafeUnpin for EventKind
impl UnwindSafe for EventKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more