X Show
AI-enhanced title
Copy the assembly language program below to your computer. Then assemble,link and run it as described in the next section
; Program: TEST.ASM
.model small
.stack 256
.code
start:
mov ah, 2h
int 21h
end start