Object code: Difference between revisions

Content deleted Content added
m top: grammar
10k (talk | contribs)
mNo edit summary
Line 7:
Machine code is binary (1's and 0's) code that can be executed directly by the cpu. If you were to open a "machine code" file in a text editor you would see garbage, including unprintable characters.
Object code is a variant of machine code, with a difference that the jumps are sort of parameterized such that a linker can fill them in.
An assembler is used to convert assembly code into machine code (object code). A linker links several object (and library) files to generate an executable.
 
==References==