Hello world!
July 23rd, 2009
Posted in: Uncategorized
As far as first posts go, I think the title some intrepid young geek chose for this example post would suffice for a good topic as well.
__asm
.data
string_1 BYTE "Hello World, and welcome to [CMS]Gib_Omelet's blog."
BYTE "Please refrain from being overjoyed.",0AH, 0DH,0
.code
MAIN PROC
CALL CLRSCR
MOV ECX, 24
L1: PUSH ECX
MOV EDX, OFFSET string_1
CALL WriteString
POP ECX
LOOP L1
CALL WaitMsg
exit
MAIN ENDP
END MAIN
And there you have a first blog post. One of you should know what that was, and I suspect another might know.
Now get back to work.
Permalink

