assembly
Installation
SKILL.md
Assembly
Low-level language with a very strong correspondence between the instruction in the language and the architecture's machine code instructions.
When to Use
- Operating System Kernels
- Embedded Systems / Microcontrollers
- Reverse Engineering
- Extreme optimization (rarely needed today)
Quick Start (x86_64 Linux)
section .data
msg db "Hello, World!", 0xa
len equ $ - msg