Develop an 8086 assembly program that reads from console a number N and prints to
console a triangle composed by N rows using “*” chars, as in the following diagram. For terminal console
compatibility reasons, you are asked to check that the maximum number of column is 80.
Example:
How many row for the triangle? = 12
*
***
*****
*******
*********
***********
*************
***************
*****************
*******************
*********************
***********************
Please note that the number of columns at the triangle base is given by the following: nCol = nRow * 2 – 1.