http://mtaalamu.ru ru (http://mtaalamu.ru) (http://mtaalamu.ru) http://mtaalamu.ru http://mtaalamu.ru Comments: "Hello, World!" на ассемблере /blog/coding/2020.html#comment9006 /blog/coding/2020.html#comment9006 Sergei_T ]]> Wed, 14 Sep 2011 09:24:37 +0400 comments Comments: "Hello, World!" на ассемблере /blog/coding/2020.html#comment9013 /blog/coding/2020.html#comment9013 illuthion
title hello
codsg segment para,'code'
org 100h
co proc
assume cs:codsg, ds:codsg, ss:codsg, es:nothing
;---Установка режима
mov ah,00
mov al,03
int 10h
;---Очистка экрана
mov ax,0600h
mov bh,07h
mov cx,0000h
mov dx,148fh
int 10h
;---Смещение курсора на 10-10
mov ah,02
mov bh,00
mov dh,10
mov dl,10
int 10h
;---Печать строки
mov ah,09
lea dx,string
int 21h
;---Еще какие-то страшные строчки
mov ah,00
int 16h
int 20h
ret
co endP
;---Собственно строка
string db 'Hello World','$'
codsg ends
end
]]>
Wed, 14 Sep 2011 19:41:25 +0400 comments
Comments: "Hello, World!" на ассемблере /blog/coding/2020.html#comment9014 /blog/coding/2020.html#comment9014 yababay Wed, 14 Sep 2011 21:11:21 +0400 comments