pub trait MachineProgram<F>: Send + Sync { // Required method fn pc_start(&self) -> F; }
A program that defines the control flow of a machine through a program counter.
Gets the starting program counter.