pub fn assemble_program_buf<R>( reader: &mut R, ) -> Result<Vec<u32>, AssemblerError>where R: BufRead,
Assemble a BufRead down to a vector of words. The input should contain the entire program.
BufRead