Skip to content

Instantly share code, notes, and snippets.

@mizdra
Created August 25, 2015 08:04
Show Gist options
  • Save mizdra/f1da9fdcab7aebbe8340 to your computer and use it in GitHub Desktop.
Save mizdra/f1da9fdcab7aebbe8340 to your computer and use it in GitHub Desktop.
var g = generator(0x41c64e6d, 0x6073, 0x0);
'use asm';
'use strict';
function* generator(a, b, s) {
a = a | 0;
b = b | 0;
s = s | 0;
while (true) {
s = (Math.imul(s, a) + b) | 0;
yield s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment