Just finished learning x86 assembly language. What can I do with it?

Viewed 20956

I just finished learning assembly language. But I couldn't understand what could I implement (for practice/like small project). Would be great if its something useful for anyone.

12 Answers

Would be great if its something useful for anyone.

You've familiarized yourself with low level operation of computers. Being able to read assembly may help you understand how your compiler behaves.

The rest may call some criticism, because it reflects a polarized view. One day after a one woeful embedded project, my mentor told me: "If anyone working for you writes in assembly, fire him to keep your own job." I agree with him. From a programmatic standpoint, writing in assembly is too troublesome.

Related