Thursday, November 11, 2010

8086 Microprocess FACTORIAL Program

MOV SI,8000
MOV BX[SI]
MOV AX,01
LABEL1: MUL BX
DEC BX
JNZ LABEL1
MOV DI,8050
MOV [DI],AX
INT 03

3 comments:

  1. What if I give negative number or some 32 bit number

    ReplyDelete
  2. What if I give negative number or some 32 bit number

    ReplyDelete
  3. Why should we move AX TO DI lacation

    ReplyDelete