diff --git a/Assembler Intel Code/hello_world.asm b/Assembler Intel Code/hello_world.asm new file mode 100644 index 0000000..900141c --- /dev/null +++ b/Assembler Intel Code/hello_world.asm @@ -0,0 +1,24 @@ +; hello_world.asm intel + +.model small + +.stack 100h + +.data +msg db "Hello World!",'$' + +.code +main proc + mov ax,@data + mov ds, ax + +; hello-world is there + mov dx,offset msg + mov ah,09 + int 21h + + mov ax,4c00h + int 21h + +main endp +end main \ No newline at end of file