Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

What does this loop do?

Name: Anonymous 2007-02-06 2:26

for (;;)
    ;

I really don't know. I'm completely serious.

Name: Anonymous 2007-02-06 23:36

>>23

org 7c00h #Load this as 0x7c00?

mov ah,0eh #Places 10d in ah.
mov al,64h #Places 100d in al
int 10h    #Raises interupt 16d, whatever that is.
inc al     #al++
int 10h    #Raises interupt 16d
add al, 0eh#Adds 10 to al. al = 111d
int 10h    #Raises interupt 16d
add al, 2  #Adds 2 to al. al = 113d
int 10h    #Raises interupt 16d
jmp 7c02h  #Jumps to 0x7c02. Whatever that is.

filler db 01FFh-(($-1)-7c00h) DUP(0) #No idea.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List