请问这段MASM汇编代码是什么意思?求注释,我刚刚学习汇编

.model small

.data
    strs DB 'Hello World',13,10,'$'
.code
start:
    mov ax,@data
    mov ds,ax
    mov dx,offset strs
    mov ah,09h
    int 21h
    mov ah,4ch
    int 21h
end start

求每一行的注释,谢谢大神!
如果可以,请问哪里有MASM很入门的那些详细教程?谢谢!

int 21h是一个dos软中断
mov ah,09h,说明调用09h功能号
https://blog.csdn.net/weixin_30552811/article/details/98911162
这里可以查,09h是输出字符串到屏幕