Guest User

Untitled

a guest
Aug 29th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     LEA SI,BUF
  2.     MOV CX,SIZE
  3.     CALL    INDEX
  4.     RET
  5. INDEX:  MOV DI,SI
  6.     REPNE   SCASB
  7.     JNE INDEXL
  8.     MOV CX,DI
  9.     SUB CX,SI
  10. INDEXL: DEC CX
  11.     RET
  12. BUF DB  1,2,3,4,5,6,7,8,9,0
  13. SIZE    EQU ($-BUF)/TYPE BUF
Add Comment
Please, Sign In to add comment