github generated gh-pages branch

This commit is contained in:
mimi1971
2010-06-24 20:09:28 +08:00
committed by Mike Donaghy
parent 27cce9afa1
commit 97e0e510b5
181 changed files with 88 additions and 1096 deletions

View File

@@ -1,24 +0,0 @@
; 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