aopt386.pas 305 B

123456789101112131415161718192021222324
  1. unit aopt386;
  2. Interface
  3. uses aopt;
  4. Type TAsmOptimizer386 = Object(TAsmOptimizer)
  5. Constructor Init(_AsmL: PAasmOutput);
  6. Destructor done;
  7. End;
  8. Implementation
  9. Constructor init(_AsmL: PAasmOutput);
  10. begin
  11. inherited init(_AsmL);
  12. End;
  13. Destructor Done;
  14. Begin
  15. inherited done
  16. End;
  17. End.