mirror of
https://github.com/aljazceru/securedorg.github.io.git
synced 2025-12-21 07:54:20 +01:00
27 lines
733 B
Markdown
27 lines
733 B
Markdown
---
|
|
layout: default
|
|
permalink: /RE101/section1.3/
|
|
title: Fundamentals
|
|
---
|
|
[Go Back to Reverse Engineering Malware 101](https://securedorg.github.io/RE101/)
|
|
|
|
# Section 1.3: Fundamentals #
|
|
|
|
## x86 Assembly ##
|
|
|
|
The C programming is a high level language interpreted by the compiler that converts code into machine instructions called assembly language. By using a disassembler tool we can get the assembly language of a compiled C program.
|
|
|
|
### Opcodes and Instructions ###
|
|
|
|
### Registers ###
|
|
|
|
## A Function and Calling a Function ##
|
|
|
|
### Arguments ###
|
|
|
|
### Local Variables ###
|
|
|
|
### The Stack ###
|
|
|
|
[Anatomy of PE <- Back](https://securedorg.github.io/RE101/section1.2) | [Next -> Section 2](https://securedorg.github.io/RE101/section2)
|