Fix Assembly files (#999)

This commit is contained in:
MrBrain295
2021-05-07 20:33:04 -05:00
committed by GitHub
parent 4e3bde945b
commit 45856bf57b
21 changed files with 24 additions and 24 deletions

View File

@@ -2,7 +2,7 @@
.model small
.stack
.data
message db "Hello world!", "$"
message db "Hello World", "$"
.code
main proc
mov ax,seg message
@@ -14,4 +14,4 @@
mov ax,4c00h
int 21h
main endp
end main
end main