Don't listen to the fags here, assembly is all u need.
title Hello World Program
dosseg
.model small
.stack 100h
.data
hello_message db 'Hello, World!',0dh,0ah,'$'
.code
main proc
mov ax,@data
mov ds,ax
mov ah,9
mov dx,offset hello_message
int 21h
mov ax,4C00h
int 21h
main endp
end main
>>7
The Intel manuals are free too, as in physical copies of them.
Name:
Anonymous2009-02-21 4:01
>>9
I actually have the intel manuals sitting next to me. The paper is newspaper quality, it really is quite bad. But then again, can't complain about free stuff.