Computer Science, asked by blueansh3148, 11 months ago

Example of a compiler which converts the code into assembly code only

Answers

Answered by Anonymous
0

Explanation:

To pick one example, the GNU compiler suite generally takes a “-S” command line option to generate a “.s” (assembly source) file instead of an object file. You can then use the 'as' assembler to turn that into machine code.

Answered by UrvashiBaliyan
0

Answer:

To pick one example, the GNU compiler suite generally takes a “-S” command line option to generate a “.s” (assembly source) file instead of an object file. You can then use the 'as' assembler to turn that into machine code.

Similar questions