Category Archives: Assembly

Assembly cheatsheet

Assembler is a low-level programming language. Below it there is only machine code (zeros and ones). Why learn assembler? To understand how a computer works. Any programmer must know C. Any programmer who knows C must know Assembler. The ability … Continue reading

Posted in Assembly | Leave a comment

Hello World in Assembly x86

Hello World in assembly language. How much fun is in that! For starters, here’s what we’re going to dig into in asm, the classics: #include <stdio.h> int main(void) { printf(“Hello, world\n”); return 0; } On GNU assembly it would be … Continue reading

Posted in Assembly | Leave a comment