About site: Data Formats/Executable - DOS EXE Format
Return to Computers
  About site: http://www.delorie.com/djgpp/doc/exe/

Title: Data Formats/Executable - DOS EXE Format Information about the DOS EXE Format (also known as the MZ format).
Portable_Executable_File_Format Verbose description of DLL and other Windows files formats.

c3dNow Offers stereoscopic systems and virtual reality accessories.

CGSD_Corp_ Builds high performance custom simulation and virtual reality systems.

Cybermind_NL Developers of state of the arts Virtual Reality. From Head Mounted Displays to Motion simulators and much more

Cyberware_Home_Page Cyberware manufactures a variety of instruments for 3-dimensional scanning.

DONZ_multi-screen Manufactures integrated multiple monitor desktop computer displays.


  Alexa statistic for http://www.delorie.com/djgpp/doc/exe/





Get your Google PageRank






Please visit: http://www.delorie.com/djgpp/doc/exe/


  Related sites for http://www.delorie.com/djgpp/doc/exe/
    Essential_Reality Developing 3D input devices that make working with 3D software and interfaces simple and intuitive.
    EST_Engineering_Systems_Technologies Distributor of augmented and virtual reality, and visual simulation hard- and software in Germany and Europe.
    InterSense Provider of hybrid tracking solutions incorporating ultrasound and accelerometers with inherent prediction.
    Intesis_Ltd_ Virtual reality hardware distributors and hire, plus related software development.
    i-O_Display_Systems Manufacturers personal display devices and stereoscopic 3D products for both video and computer uses.
    motion_capture_online_shop Products for real-time virtual character animation.
    Personal_Monitor A unique eyeglass mounted display that creates a high resolution color image in the user's eyesight.
    Pro_Systems Specializes in sales and rental of virtual reality and simulation hardware.
    3rdTech,_Inc_ Provides the HiBall Wide Area, 6DOF Optical Tracker and the DeltaSphere 3D Laser Scene Digitizer capable of room size digitizing.
    RighTThing Reseller of 3D stereoscopic and VR hardware and software. Sells motion simulators, headtrackers, 3D movies, 3D HMD, 3D glasses for PC and TV.
    RoninWorks Offers the BurstMouse and its plug-ins to enhance work flow with direct three dimensional access to your 3d data.
    StereoGraphics Makers of StereoEyes glasses, which use shutters to alternate between eyes for stereo effects. Shutters are controlled by IR transmitter at computer. Allows multiple viewers.
    Tek_Gear,_Inc_ Portable technology for wearable computing needs.
    Virtual_Realities Distributor for low-end VR hardware, including gloves, joysticks, and head-mounted displays.
    Virtual_Research_Systems Leading provider of high-quality (and price) head-mounted displays for virtual training and simulation markets.
    VR_Solutions_Pty_Ltd Product and services listing for immersive displays used in visualisation, simulation and research applications. Overview of Haptic and HMD products.
    VRex VRex specializes in stereoscopic imaging and display products, including projection panels, projectors, video cameras, as well as various hardware and software utilities.
    VRLOGIC Distributing professional VR hardware and software, solutions and services.
    VR-SPACE_Inc_ Manufacturer of affordable VR 6DOF trackers, includes 3 sensors to track head as well as both hands
    X-IST_-_Realtime_Technologies_GmbH Develops realtime motion capture hard- and software for character animation
    XPI_Simulation Provider of high performance visual solutions for training and simulation applications.
    BioPassword A software-based technology that learns and verifies unique typing patterns. Includes an introduction to biometrics and keyboard dynamics.
    Dos_and_Don\'ts_of_Client_Authentication_on_the_Web Paper by Kevin Fu, Emil Sit, Kendra Smith, and Nick Feamster. In the Proceedings of the 10th USENIX Security Symposium, Washington, D.C., August 2001. [PDF]
    Finally_Software Enterprise security solutions based on PKI and Kerberos. Also offer a secure terminal emulator for connecting to Unix servers from Windows. Product information and downloadable evaluation software.
    Flicks_Software Software password protects web content (Windows NT / 2000). Free trial downloads available.
    iDEX_Systems,_Inc_ Java-powered iButton based personal identity management security services and digital certificate authentication for secure logon, secure messaging, and digital signatures.
    IIS_User_Authentication_Tutorial Information on various methods for WWW password protection using Internet Information Server (IIS). Text-based tutorial with some screenshots.
    iisPROTECT Functions with Internet Information Server to secure web sites. Includes live demo.
    Intertrust_Technologies_Corporation Develops general purpose digital rights management platform which serves as foundation for providers of digital information, technology and commerce services to participate in a global system for digi
    I/O_Software Provider of software solutions, including biometric solutions. Site includes product descriptions and technology licensing terms.
    M-Tech_Information_Technology,_Inc_ ID-Synch, identity management software for managing user administration processes. Product information, customers, press releases and contact details.
    NMA,_Inc_ ZSentry two-factor authentication solution. Product information, white papers and contact details.
    Open_Systems_Management Password synchronization and role based access control across UNIX, Windows NT and resident applications. Site contains FAQs.
    Password_Management Paper by M. Bishop, 1991. Discusses problems of password selection and password management, and identifies relevant techniques. [PDF]
    Pluggable_Authentication_Modules Sun's official PAM documentation. Programmer documentation and source code.
    A_Proactive_Password_Checker Paper by M. Bishop, 1991. The author describes a technique, and a mechanism, to allow users to select passwords which to them are easy to remember but to others would be very difficult to guess. [Post
    Proginet_Enterprise_Software Password synchronization, enterprise-wide access control management and managed file transfer software.
    Remote_User_Authentication_in_Libraries Comprehensive collection of resources for libraries and universities. Includes links to software and some links of interest to non-librarians.
    RSA_Security Products include token-based one time password systems and single sign on systems. Site contains information on security.
    SAFLINK Offer a range of identity management solutions based on tokens, smartcards and biometrics. Headquarters in Bellevue, WA.
This is now2007.com cache of m/ as retrieved on 2009.01.08 now2007.com's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
EXE Formatrnum=Math.round(Math.random() * 100000);document.write('');Click Here  www.delorie.com/djgpp/doc/exe/  search  EXE FormatNote: all multi-byte values are stored LSB first. One block is 512bytes, one paragraph is 16 bytes. See also the entry in Ralf Brown's InterruptList Offset (hex) Meaning 00-01 0x4d, 0x5a. This is the "magic number" of an EXEfile. The first byte of the file is 0x4d and the second is0x5a. 02-03 The number of bytes in the last block of the program that areactually used. If this value is zero, that means the entire lastblock is used (i.e. the effective value is 512). 04-05 Number of blocks in the file that are part of the EXE file. If[02-03] is non-zero, only that much of the last block isused. 06-07 Number of relocation entries stored after the header. May bezero. 08-09 Number of paragraphs in the header. The program's data beginsjust after the header, and this field can be used to calculate theappropriate file offset. The header includes the relocation entries.Note that some OSs and/or programs may fail if the header is not amultiple of 512 bytes. 0A-0B Number of paragraphs of additional memory that the program willneed. This is the equivalent of the BSS size in a Unix program. Theprogram can't be loaded if there isn't at least this much memoryavailable to it. 0C-0D Maximum number of paragraphs of additional memory. Normally, theOS reserves all the remaining conventional memory for yourprogram, but you can limit it with this field. 0E-0F Relative value of the stack segment. This value is added to thesegment the program was loaded at, and the result is used toinitialize the SS register. 10-11 Initial value of the SP register. 12-13 Word checksum. If set properly, the 16-bit sum of all words inthe file should be zero. Usually, this isn't filled in. 14-15 Initial value of the IP register. 16-17 Initial value of the CS register, relative to the segmentthe program was loaded at. 18-19 Offset of the first relocation item in the file. 1A-1B Overlay number. Normally zero, meaning that it's the mainprogram.Here is a structure that can be used to represend the EXE headerand relocation entries, assuming a 16-bit LSB machine:struct EXE { unsigned short signature; /* == 0x5a4D */ unsigned short bytes_in_last_block; unsigned short blocks_in_file; unsigned short num_relocs; unsigned short header_paragraphs; unsigned short min_extra_paragraphs; unsigned short max_extra_paragraphs; unsigned short ss; unsigned short sp; unsigned short checksum; unsigned short ip; unsigned short cs; unsigned short reloc_table_offset; unsigned short overlay_number;};struct EXE_RELOC { unsigned short offset; unsigned short segment;};The offset of the beginning of the EXE data is computed likethis:exe_data_start = exe.header_paragraphs * 16L;The offset of the byte just after the EXE data (in DJGPP, the sizeof the stub and the start of the COFF image) is computed like this:extra_data_start = exe.blocks_in_file * 512L;if (exe.bytes_in_last_block) extra_data_start -= (512 - exe.bytes_in_last_block);  webmaster  donations  bookstore    delorie software  privacy    Copyright © 2006  by DJ Delorie    Updated Apr 2006  rnum=Math.round(Math.random() * 100000);document.write('');Click HerePlease take a moment to fill outthis visitor surveyYou can help support this site byvisiting the advertisers that sponsor it! (only once each, though)
 

Information

about

the

DOS

EXE

Format

(also

known

as

the

MZ

format).

http://www.delorie.com/djgpp/doc/exe/

DOS EXE Format 2009 January

dvd rental

dvd


Information about the DOS EXE Format (also known as the MZ format).

Rules




© 2005 Internet Explorer 5+ or Netscape 6+

Recommended Sites: 1. Arts - Business - Computers - Games - Health - Home - Kids and Teens - News - Recreation - Reference - Regional - Science - Shopping - Society - Sports - World Miss Gallery - Top Anime Hentai - DVD rental by mail - Mortgage - Website Design - Mobile Phone - Nature's Sunshine Products - Loans
2009-01-08 11:02:37

Copyright 2005, 2006 by Webmaster
Websites is cool :)