bee-bee
2008-05-29 20:33:42 UTC
there is a sample like
.mode small
.code
.386
start: jmp process
word db 'assembler learn"
process:xor bx,bx
mov cx,15
rep: mov dl,words[bx]
mov ah,02
int 21h
inc bx
loop rep
int 20h
end start
its print word assembler learn, but how to print word learn assembler without changing word db 'asembler learn?
is there any tutorial that give a simple sample code to learn, step by step ?
thank's