Skip to content

Commit

Permalink
Add memop_32bytes to list of combined flags in decode.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
LindaGuiga committed Sep 26, 2023
1 parent 2ca7fdb commit 1b05c52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion evm/src/cpu/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,14 @@ const OPCODES: [(u8, usize, bool, usize); 14] = [
/// List of combined opcodes requiring a special handling.
/// Each index in the list corresponds to an arbitrary combination
/// of opcodes defined in evm/src/cpu/columns/ops.rs.
const COMBINED_OPCODES: [usize; 6] = [
const COMBINED_OPCODES: [usize; 7] = [
COL_MAP.op.logic_op,
COL_MAP.op.fp254_op,
COL_MAP.op.binary_op,
COL_MAP.op.ternary_op,
COL_MAP.op.shift,
COL_MAP.op.m_op_general,
COL_MAP.op.memop_32bytes,
];

pub fn generate<F: RichField>(lv: &mut CpuColumnsView<F>) {
Expand Down

0 comments on commit 1b05c52

Please sign in to comment.