OyaCode
Talk is cheap, show me the code.ASM Learning Note 5 - Jump
Jump Instruction TypeIn ASM, we have both Conditional Jump and _Unconditional Jump_. As their nam...
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 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...
ASM Learning Note 1 - CPU8086
Recommend TutorialCheck this open-sourced guide book of 8086 CPU and assembly: https://github.com...