public IEnumerable <IInstruction> DebugFile(string file) { _hasDebugFile = true; var code = new AbcCode(_abc); //Operand of debugfile instruction is string //Also we should look at format of this string. See how ASC formats this string. string s = FormatDebugFile(file); code.DebugFile(s); return(code); }