Question
Dose this c compiler allow us to compile C into runnable code. The reason is we convert the code to nasm but do we make a nasm to machine code step?
Dose this c compiler allow us to compile C into runnable code. The reason is we convert the code to nasm but do we make a nasm to machine code step?
Hello Tyler,
Thanks for your question, the course is designed to teach you how to make a compiler not an assembler, therefore we compile only to assembly language. If you wish to make an assembler you can use the skills you learned in the parsing part of this course and build an assembler based on the Intel instruction manual and generate the opcodes manually. An assembler would of added another 10 hours to the course so I considered it off-topic