Addition Using Partial Registers
2025-07-30
In x86 assembly, partial registers allow access to smaller parts of the full CPU registers (like 8-bit or 16-bit parts of EAX, EBX, etc.). These partial registers can be used in arithmetic operations such as add.
1124 words
|
6 minutes
Addition using fully register
2025-07-30
Addition is one of the most fundamental operations in assembly language. In x86 architecture, the add instruction performs arithmetic addition on registers, memory, or immediate values.
555 words
|
3 minutes
Inroduction to CPU Register
2025-07-26
alt text
Registers are tiny storage spaces inside a computer’s CPU (Central Processing Unit). They’re super fast and are used to hold data the CPU needs right now, like numbers being added or memory addresses.
487 words
|
2 minutes
MOV Instructions
2025-07-26
In assembly, mov stands for “move”, but it doesn’t actually move data — it copies data from one location to another.
619 words
|
3 minutes
Draft Example
2022-07-01
This article is currently in a draft state and is not published. Therefore, it will not be visible to the general audience. The content is still a work in progress and may require further editing and review.
72 words
|
1 minute