Skip to content

Instantly share code, notes, and snippets.

@RIscRIpt
Last active August 29, 2015 14:07
Show Gist options
  • Save RIscRIpt/2fe1b9429eee3357a3b2 to your computer and use it in GitHub Desktop.
Save RIscRIpt/2fe1b9429eee3357a3b2 to your computer and use it in GitHub Desktop.
Calculate integer square root
;EAX - Input
;ECX - Result
mov ecx, -1
mov edx, -1
@@:
add edx, 2
inc ecx
sub eax, edx
jns @b
ret
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment