Hello Assembly
This is my first post! And I want to start it with a special and unpopular topic, Assebmly at least when we first start programming. However, this language is important to any programmer who wants to understand how processors, operating systems, firmware, compilers, and programming languages work. Assembly is a human-readable way of representing Machine Code or CPU Instruction Set. As we said, that is a human-readable language and not a Machine Code, so the machine will not run it as it is. That’s why there is a program called Assembler that converts the assembly code that we write to Machine Code. ...