Vibeset

Assembly

Assembly (ASM) is the human-readable representation of the machine instructions the CPU executes directly. It's specific to each architecture (x86, ARM). Used where absolute control and extreme performance are critical.

Para qué se usa

A favor

En contra

Ecosistema

Ejemplo

section .data
  msg db "¡Hola, mundo!",0
section .text
  global _start