Reputation: 49
We're writing an emulator project for college and we have to use ELF file as an input, but we're not quite sure what does ELF file looks like. It should contain certain operations which we can execute (and all of them should be represented binary), but does it contain something else? Or is the first line first operation we are executing? Thanks for your responses.
Upvotes: 3
Views: 4299
Reputation: 23
Event logs can be found at: %SystemRoot%\System32\Winevt\Logs. Copy a small file to a desktop and rename the extension to ".dat" instead of ".evtx" and view the file using a text viewer like notepad++.
The first line shows that the file follows the ElfFile format.
Upvotes: 0
Reputation: 1040
ELF is the Executable and Linkable Format, the file format for executables, libraries and object files used by most operating systems that aren't Windows or OS X.
Upvotes: 4