0
How do I get good at writing Assembly code.
I am an experienced programmer. I'm trying to make an operating system. Currently, I'm doing fine following tutorials and modifiying my output slightly, but i want to get better at programming. does anyone have any suggestions?
2 Respostas
+ 5
Study from the best assembly writer in existence: The C compiler! Nobody writes better assembly than the C compiler optimizer. So, write the program in C, then use the compiler switch that outputs the optimized assembly code to a file, and study the resulting assembly code.
0
That is a great idea. Thanks