Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. loop1:
  2. xor ecx, ecx; //counter
  3. mov esi, list;
  4. mov eax, [esi + ecx];
  5. cmp eax, 0x00; //check if the character is null
  6. je end;
  7. inc ecx;
  8. jmp loop1;
  9.  
  10. end:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement