含标签“8086”的文章
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 ...
ASM Learning Note 2 - MOV Basics
Try out mov Instruction As the image shows, we have successfully move the value into this 3 regi...