;ÄÄÄÄÄÄÄÄÄÄ CODE_SEG_1  ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ

CODE_SEG_1	segment para public
		assume  CS:CODE_SEG_1, DS:CODE_SEG_1, SS:CODE_SEG_1, ES:CODE_SEG_1

		org	100h

proc_start	proc	far

start:		; N-Ref=0
                mov cx, 4
loop_write:
                push cx
                mov ah, 2
                int 1Ah
                mov bl, dh
                xor bh, bh
                mov si, offset Msg_Deneme
                push cs
                pop ds
                mov ax, 01a1h
                int 18h
                pop cx
                loop loop_write

                int 20h
Msg_Deneme:
                db 07h
                db "Bu bir 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 "
                db  "6 7 8 9 0 8 8 8 2 3 4 5 0 1 2 3 43 denemedir ..."
                db 0

proc_start	endp

CODE_SEG_1	ends

		end	start

