Пример #1
0
        public Executable(string fileName)
        {
            MZFile file = new MZFile(fileName);

            this.image      = new ExecutableImage(file);
            this.entryPoint =
                new Address(image.MapFrameToSegment(file.EntryPoint.Segment), file.EntryPoint.Offset);
        }
Пример #2
0
        public Executable(string fileName)
        {
            MZFile file = new MZFile(fileName);

            this.image = new ExecutableImage(file);
            this.entryPoint =
                new Address(image.MapFrameToSegment(file.EntryPoint.Segment), file.EntryPoint.Offset);
        }
Пример #3
0
 public ExecutableSegment(ExecutableImage image, int id, UInt16 frameNumber)
 {
     this.id = id;
     this.image = image;
     this.frameNumber = frameNumber;
 }
Пример #4
0
 public ExecutableSegment(ExecutableImage image, int id, UInt16 frameNumber)
 {
     this.id          = id;
     this.image       = image;
     this.frameNumber = frameNumber;
 }