Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
hidenori-shinohara committed Feb 10, 2024
1 parent 98a6d83 commit 4107ba1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions core/src/alu/mul/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,28 +84,28 @@ pub struct MulCols<T> {
/// An array storing the product of `b * c` after the carry propagation.
pub product: [T; PRODUCT_SIZE],

/// The most significant bit of b.
/// The most significant bit of `b`.
pub b_msb: T,

/// The most significant bit of c.
/// The most significant bit of `c`.
pub c_msb: T,

/// The sign extension of b.
/// The sign extension of `b`.
pub b_sign_extend: T,

/// The sign extension of c.
/// The sign extension of `c`.
pub c_sign_extend: T,

/// Flag indicating whether the opcode is MUL (u32 x u32).
/// Flag indicating whether the opcode is `MUL` (u32 x u32).
pub is_mul: T,

/// Flag indicating whether the opcode is MULH (i32 x i32, upper half).
/// Flag indicating whether the opcode is `MULH` (i32 x i32, upper half).
pub is_mulh: T,

/// Flag indicating whether the opcode is MULHU (u32 x u32, upper half).
/// Flag indicating whether the opcode is `MULHU` (u32 x u32, upper half).
pub is_mulhu: T,

/// Flag indicating whether the opcode is MULHSU (i32 x u32, upper half).
/// Flag indicating whether the opcode is `MULHSU` (i32 x u32, upper half).
pub is_mulhsu: T,

/// Selector to know whether this row is enabled.
Expand Down

0 comments on commit 4107ba1

Please sign in to comment.