Skip to content

Instantly share code, notes, and snippets.

View JozefFlakus's full-sized avatar
💭
λ

Józef Flakus JozefFlakus

💭
λ
View GitHub Profile
@johnnykv
johnnykv / Eratosthenes.asm
Created May 7, 2011 18:53
Finding primes with sieve of Eratosthenes using assembly.
; ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤
include \masm32\include\masm32rt.inc
; ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤
comment * -----------------------------------------------------
Johnny Vestergaard - 2011
finding primes with sieve
of Eratosthenes in assembler
----------------------------------------------------- *