m3objfile/src/MasmObjFile.i3


Copyright (C) 1994, Digital Equipment Corp.
 An MasmObjFile.T is an object file represented as
   ASCII text that can be fed to the Microsoft assembler MASM. 

INTERFACE MasmObjFile;

IMPORT M3ObjFile, Wr, Thread;

TYPE
  T <: M3ObjFile.T;

PROCEDURE New (): T;

PROCEDURE Dump (t: T; wr: Wr.T) RAISES {Wr.Failure, Thread.Alerted};

END MasmObjFile.