Print Sterik Moving Horizontally – Assembly Code

0

[su_box title=”Moving Sterik” style=”bubbles” box_color=”#1d318d”]

; You may customize this and other start-up templates;
; The location of this template is c:\emu8086\inc\0_com_template.txt

org 100h

; add your code here

.data

.code

main proc

mov ax,0b800h
mov ds,ax

mov cx,79
mov si,1920
mov [si],142Ah
mov bx,[si]
row:

mov [si],bx
mov [si],’ ‘

inc si
inc si

mov [si],bx
loop row

ret
main endp

[/su_box]

Table of Contents

OutPut Screen:

Sterik Moving Horizontally

Find More Assembly Codes Here!

Leave A Reply