Skip to content

Instantly share code, notes, and snippets.

@AliLtRP
Created August 26, 2022 17:33
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Count Odd Numbers Below N in x86_64 Nasm
section .text
global oddcnt
; <-- EAX oddcnt(EDI n) -->
oddcnt:
xor eax, eax
mov edx, 0
mov eax, edi
mov ebx, 2
div ebx
ret
; -----> endof oddcnt <-----
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment