OyaCode

含标签“8086”的文章

ASM Learning Note 8 - Functions

Function Definition & CallThis part is simple. Use following template to define a new function.&l...

ASM Learning Note 4 - Logical & Arithmetic Calculation

Logical CalculationCMP, AND, TEST, OR, XOR, NOT.These are logical operaion instructions on CPU 80...

ASM Learning Note 5 - Jump

Jump Instruction TypeIn ASM, we have both Conditional Jump and _Unconditional Jump_. As their nam...

ASM Learning Note 3 - Variables and Array Basics

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

ASM Learning Note 2 - MOV Basics

Try out mov InstructionAs the image shows, we have successfully move the value into this 3 regist...