Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

National University of Technology

Computer Science Department


Semester Spring – 2023
PBL # 2
Course: COAL LAB
Course code: CS4604

Submitted to: Submitted by:


Name: Dr. Daud Sultan Name: Muhammad Saad Ahmed

Reg. No: F21605037


CS Department
TASK # 1: Write a program that will print asterisks.
CODE:
TITLE Write a program that will print the following pattern on output.
;*
;**
;***
;****
;*****
;CREDENTIALS
; MUHAMMAD SAAD AHMED
; F21605037
; CS 21
.686
.MODEL flat, stdcall
.STACK
INCLUDE Irvine32.inc
.data
str1 BYTE " ",0
.code
main PROC
MOV al,'*'
MOV ecx,6
MOV esi,0
l1:
MOV str1[esi],al
lea edx,str1
call writeString
call crlf
INC esi
loop l1
exit
main ENDP
END main
SCREENSHOT:

You might also like