Assembly Language Program to print Strings in multiple lines (8086)
In this article, you’ll be learning how to write a Assembly Language Program to print Strings in multiple lines (8086). For this example code, we’ll have three different strings saved on the Registers and will be printed in different lines.
Title: 8086 Assembly Program to print String “Hello World, Good Morning, Have Good Day” in 3 different lines
Description: If you have seen your first Hello World ALP, this assembly program prints STRING from .DATA, but in three different lines. So, here we’ll be saving 3 different Strings to .DATA, and then print them one by one. From our first Hello World ALP hope you have understood the use of mnemonics to display the string and the interrupt request.
Assembly Language Program to add 10 Bytes Data
Question: Write an assembly language program to add 10 data bytes. Data is stored in memory location starting from 4460H. The result is 8 bits only and in stored in 4480H.