OyaCode
Talk is cheap, show me the code.ASM Learning Note 10 - Binary Coded Decimal
Binary Coded DecimalI guess most of you guys have already quite familiar to this concept, and it ...
ASM Learning Node 9 - Go Further
Software Interrupt8086 x16 ASM allows you to produce _Software Interrupt_. Thie name may be frust...
ASM Learning Note 8 - Functions
Function Definition & CallThis part is simple. Use following template to define a new function.&l...
ASM Learning Note 7 - Stack
Stack InstructionsThe word stack here is just the same as the conception you have learnt about be...
ASM Learning Note 6 - Repeat
LoopLOOP is the basic repeat instruction. You can use it like this:mov cx, 10 mov ax, 0 add_ax_l...