String එකක් Print කරමු | Assembly OS Development | Sinhala Tutorial | Part 02 | Mybot Official
Channel:
Subscribers:
7,740
Published on ● Video Link: https://www.youtube.com/watch?v=CrR_9v2AmqM
In this video series we are talking about how to build up our own operating system using x86 assembly.
[ORG 7C00h]
mov bx, text
mov ah, 0x0e
PrintLoop:
mov al, [bx]
cmp al, 0
je .end
int 0x10
inc bx
jmp PrintLoop
.end:
jmp $
text db 'Hello World!',0
times 510 - ($-$$) db 0
dw 0AA55h
Download NASM Assembler :- https://nasm.us
Download QEMU Emulator :- https://www.qemu.org/download/
Other Videos By MyBot Official
Tags:
my
bot
mybot
official
os
development
sinhala
tutorial
x86
assembly