public void write_value(int input) { state = e_opcode_state.written; value = input; }
public void reset_state() { state = e_opcode_state.none; }
public int read_value() { state = e_opcode_state.read; return(value); }
public c_opcode(int input) { value = input; state = e_opcode_state.none; }