Fundamentos de Assembly x86/x64
Conheça as instruções e a sintaxe fundamentais da linguagem Assembly x86 e x64.
Fundamentos de Assembly x86/x64 é uma aula grátis de Reverse Engineering & Binary Analysis Basics no CoddyKit. Esta é a aula 1 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de Reverse Engineering & Binary Analysis Basics, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de Reverse Engineering & Binary Analysis Basics inclui 4 aulas no total.
Partes desta aula ainda não foram traduzidas e aparecem em inglês.
What is Assembly Language?
Welcome to the world of assembly language! This is the lowest-level programming language that humans typically read and write.
It's a symbolic representation of machine code, which are the raw binary instructions that a computer's processor (CPU) understands and executes directly. Think of it as the CPU's native tongue.
RE's Low-Level View
For reverse engineers, understanding assembly language is crucial. When you analyze a compiled program, you rarely have the original source code.
Instead, you'll be looking at its assembly representation. Learning assembly helps you:
- Understand exactly how a program executes.
- Identify functions, data, and control flow.
- Uncover hidden behaviors or vulnerabilities.
x86 vs x64: The Difference
When we talk about x86/x64 assembly, we're referring to instruction sets for Intel and AMD processors. The main difference is the architecture's 'width':
- x86: Refers to 32-bit architecture.
- x64: Refers to 64-bit architecture, also known as AMD64 or Intel 64.
While x64 introduces more registers and wider data paths, many fundamental instructions remain similar, often with extended versions.
Basic Instruction Format
Assembly instructions generally follow a simple format: INSTRUCTION destination, source.
- INSTRUCTION: This is the operation to perform (e.g., move, add, subtract).
- destination: Where the result of the operation will be stored.
- source: The data or location to operate on.
Some instructions might have one operand, or none at all. The order (destination, source) is common in Intel syntax, which we'll use.
The MOV Instruction
The MOV instruction is one of the most fundamental. It stands for 'move' and is used to copy data from a source to a destination.
It's important to note that MOV doesn't 'cut' or 'remove' the data from the source; it simply copies it, leaving the source unchanged.
Its general form is: MOV destination, source
MOV Examples (Conceptual)
Let's look at some conceptual examples of MOV. We'll use common x86/x64 register names like EAX, EBX, RCX, etc., which are tiny storage locations inside the CPU. Don't worry about their exact function yet!
MOV EAX, EBX: Copy the value from registerEBXinto registerEAX.MOV RCX, RDX: Copy the value fromRDXintoRCX(64-bit version).MOV EAX, 123: Copy the constant value123into registerEAX.
Arithmetic: ADD and SUB
Beyond just moving data, assembly allows basic arithmetic operations. Two common ones are ADD and SUB.
ADD destination, source: Adds thesourcevalue to thedestinationvalue, storing the result indestination.SUB destination, source: Subtracts thesourcevalue from thedestinationvalue, storing the result indestination.
These operations modify the destination operand directly.
ADD/SUB Examples (Conceptual)
Here are some conceptual examples for ADD and SUB:
ADD EAX, EBX:EAX = EAX + EBXSUB RCX, 10:RCX = RCX - 10ADD RDX, R8:RDX = RDX + R8(using a 64-bit general-purpose registerR8)
Notice how the destination operand is updated with the result of the operation.
Immediate Values & Operands
In assembly, the terms 'operand' and 'immediate value' are important:
- Operand: A value or location that an instruction operates on. This can be a register, a memory address, or an immediate value.
- Immediate Value: A constant value that is encoded directly within the instruction itself. For example, in
MOV EAX, 123,123is an immediate value.
Understanding these terms helps you interpret what kind of data an instruction is handling.
Assembly Basics Check
Which of the following best describes the function of the MOV instruction in x86/x64 assembly?
Recap: Assembly Fundamentals
Great job! You've just taken your first steps into the world of assembly language for x86/x64 processors.
We covered:
- What assembly language is and why it's vital for reverse engineering.
- The basic instruction format:
INSTRUCTION destination, source. - Fundamental instructions like
MOV(copy),ADD(add), andSUB(subtract). - The concept of immediate values and operands.
Next, we'll dive deeper into registers and how they interact with memory!
Perguntas Frequentes
A aula “Fundamentos de Assembly x86/x64” é grátis?
Sim — o texto completo de “Fundamentos de Assembly x86/x64” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de Reverse Engineering & Binary Analysis Basics, atualize para CoddyKit PRO. O curso de Reverse Engineering & Binary Analysis Basics inclui 4 aulas no total.
O que vou aprender em “Fundamentos de Assembly x86/x64”?
Conheça as instruções e a sintaxe fundamentais da linguagem Assembly x86 e x64. Você pratica Reverse Engineering & Binary Analysis Basics com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.
Preciso ter experiência prévia para começar Reverse Engineering & Binary Analysis Basics?
Nenhuma experiência prévia é necessária. Reverse Engineering & Binary Analysis Basics no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 1 de 4.
Quanto tempo leva a aula “Fundamentos de Assembly x86/x64”?
A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.
Posso escrever e executar código nesta aula de Reverse Engineering & Binary Analysis Basics?
Sim. Cada aula de Reverse Engineering & Binary Analysis Basics inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.
Todas as aulas deste curso
- Fundamentos de Assembly x86/x64
- Registradores e Operações de Memória
- Fluxo de Controle e Chamadas de Função
- A Pilha e as Convenções de Chamada