Struct hazardflow_designs::gemmini::isa::rocc::RoCCCommand
source · pub struct RoCCCommand<const X_LEN: usize> {
pub inst: RoCCInstruction,
pub rs1: U<X_LEN>,
pub rs2: U<X_LEN>,
pub status: MStatus,
}
Expand description
RoCC Command
https://github.com/chipsalliance/rocket-chip/blob/master/src/main/scala/tile/LazyRoCC.scala#L29
TODO: Add fields which are inherent in CoreBundle
in Chisel
Fields§
§inst: RoCCInstruction
§rs1: U<X_LEN>
§rs2: U<X_LEN>
§status: MStatus
Trait Implementations§
source§impl<const X_LEN: usize> Clone for RoCCCommand<X_LEN>
impl<const X_LEN: usize> Clone for RoCCCommand<X_LEN>
source§fn clone(&self) -> RoCCCommand<X_LEN>
fn clone(&self) -> RoCCCommand<X_LEN>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<const X_LEN: usize> Debug for RoCCCommand<X_LEN>
impl<const X_LEN: usize> Debug for RoCCCommand<X_LEN>
impl<const X_LEN: usize> Copy for RoCCCommand<X_LEN>
Auto Trait Implementations§
impl<const X_LEN: usize> RefUnwindSafe for RoCCCommand<X_LEN>
impl<const X_LEN: usize> Send for RoCCCommand<X_LEN>
impl<const X_LEN: usize> Sync for RoCCCommand<X_LEN>
impl<const X_LEN: usize> Unpin for RoCCCommand<X_LEN>
impl<const X_LEN: usize> UnwindSafe for RoCCCommand<X_LEN>
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