MCPcopy Create free account
hub / github.com/TheScienceElf/UNIVAC-1219 / Program

Class Program

common/src/assembler.rs:194–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192
193#[derive(Debug)]
194pub struct Program {
195 start_address: Operand,
196 blocks: Vec<OrgBlock>,
197}
198
199pub fn parse(lines: &Vec<&str>) -> Program {
200 let mut program = Program {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected