openvm-circuit 2.0.1

OpenVM circuits
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

template <typename T> struct ProgramExecutionCols {
    T pc;
    T opcode;
    T a;
    T b;
    T c;
    T d;
    T e;
    T f;
    T g;
};

template <typename T> struct ProgramCols {
    ProgramExecutionCols<T> exec;
    T exec_freq;
};