Tagged Questions
0
votes
2answers
621 views
differences in byte code and machine code executables
What are the differences between the byte code binary executables such as Java class files, Parrot bytecode files or CLR files and machine code executables such as ELF, Mach-O and PE
what are the ...
8
votes
4answers
2k views
Writing an executable manually (machine code with Hex editor)
I'd like to know how is it possible to write something as simple as an Hello World program just by using an Hex Editor. I know that I could use an assembler and assembly language to this at a near ...
4
votes
4answers
226 views
How can I see the 0s and 1s / machine code from a executable file / object file?
I already tried this, I opened a a.out file with a text editor but I get only a bunch of characters with some instructions in it like:
üÙ
8
votes
2answers
873 views
Making gcc generate only machine code
More specifically, I would like to produce a file that I can load into memory (for example with mmap) and then jump to the start of that memory to run the code. Ideally, I'd like the option of either ...
8
votes
8answers
938 views
Why aren't EXE's in binary?
Why is it that if you open up an EXE in a hex editor, you will see all sorts of things. If computers only understand binary then shouldn't there only be 2 possible symbols seen in the file? Thanks