home
ASK QUESTION
ALL QUESTIONS
Home
Bestsoft ID:
Password:
Assembler
Start writting your Operating System now in Assembler by Downloading Bestsoft Space IDE
Download
BITS 16
mov
ax,cs
mov
ds,ax
mov
es,ax
mov
ax,0x7000
mov
ss,ax
mov
sp,ss
mov
al,03h
mov
ah,0
int
10h
mov
si,msg
call write
jmp
nnnn5
msg db 'Hello World' , 0
nnnn5:
jmp
$
write:
mov
ah, 0Eh
.repeat
lodsb
cmp
al, 0
je
.done
int
10h
jmp
.repeat
.done
color
restart
write