Skip to content

Commit

Permalink
feat: impl register and cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
eigmax committed Oct 26, 2023
1 parent 22e725c commit b953e3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/generation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ use crate::generation::outputs::{get_outputs, GenerationOutputs};
use crate::generation::state::GenerationState;
use crate::witness::transition::transition;

/// FIXME: useful?
#[derive(Clone, Debug, Deserialize, Serialize, Default)]
pub struct MipsTrace {
pub(crate) struct MipsTrace {
pub cycle: u32,
pub pc: u32,
pub next_pc: u32,
Expand Down

0 comments on commit b953e3b

Please sign in to comment.