private Program assemble(String filename) {
   File file = new File(filename + ".iloc");
   try {
     return this.assembler.assemble(file);
   } catch (FormatException | IOException e) {
     fail(e.getMessage());
     return null;
   }
 }