Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Re: TASM Begginer
[CODE].model small .stack 100h .data msg db "Hello","$" row db 10d col db 30d .code puts: mov ah,09h lea dx,msg int 21h ret pos: mov ah,02h mov bh,00 mov dh,row mov dl,col int 10h ret main proc mov ax,@data mov ds,ax mov cx,10 balik: call pos call puts inc row …
The End.
Triggerlife