Skip to content

Commit

Permalink
refactor: use instruction consts from utils
Browse files Browse the repository at this point in the history
  • Loading branch information
zmalatrax committed Nov 12, 2024
1 parent 2e8997d commit 83ba643
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/brainfuck_prover/src/components/io/table.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
use crate::utils::{INPUT_INSTRUCTION, OUTPUT_INSTRUCTION};
use brainfuck_vm::registers::Registers;
use stwo_prover::core::fields::m31::BaseField;

/// Decimal ASCII value of the Brainfuck input instruction ','.
const INPUT_INSTRUCTION: u32 = 44;
/// Decimal ASCII value of the Brainfuck output instruction '.'.
const OUTPUT_INSTRUCTION: u32 = 46;

/// Represents a single row in the I/O Table.
///
/// The I/O Table stores:
Expand Down

0 comments on commit 83ba643

Please sign in to comment.