theorem Th26:
  for ins being Instruction of SCM+FSA st InsCode ins = 4 holds ex
  da,db st ins = MultBy(da,db)
proof
  let ins be Instruction of SCM+FSA;
  assume
A1: InsCode ins = 4;
  then reconsider I = ins as Instruction of SCM by Th8;
  consider A,B such that
A2: I = MultBy(A,B) by A1,AMI_5:11;
A3:   Int-Locations = SCM+FSA-Data-Loc;
  A in SCM-Data-Loc & B in SCM-Data-Loc by AMI_2:def 16;
  then reconsider da = A, db = B as Int-Location by A3;
  take da,db;
  thus thesis by A2,Def9;
end;
