OyaCode

OyaCode

Talk is cheap, show me the code.

ASM Learning Note 7 - Stack

Stack Instructions The word stack here is just the same as the conception you have learnt about b...

ASM Learning Note 6 - Repeat

Loop LOOP is the basic repeat instruction. You can use it like this: mov cx, 10 mov ax, 0 add_ax...

ASM Learning Note 5 - Jump

Jump Instruction Type In ASM, we have both Conditional Jump and Unconditional Jump. As their name...

ASM Learning Note 4 - Logical & Arithmetic Calculation

Logical Calculation CMP, AND, TEST, OR, XOR, NOT. These are logical operaion instructions on CPU ...

ASM Learning Note 3 - Variables and Array Basics

Define Variables To define a variable, we use instructions like the code below: var_name_here db ...