The Wayback Machine - https://web.archive.org/web/20220530141842/http://qbnz.com/highlighter/
|
|
HomeNewsExamplesDemoDownloadsFAQDocumentationMailing ListsLicense
|
2:18 pm GMT
GeSHi - Generic Syntax Highlighter
Latest News
News Archive
|
Random Screenshot
Demonstration
Runtime Example
.model small
.stack
.data
message db "Hello world, I'm learning Assembly !!!", "$"
.code
main proc
mov ax,seg message
mov ds,ax
mov ah,09
lea dx,message
int 21h
mov ax,4c00h
int 21h
main endp
end main
|
|