mu/517random.mu

12 lines
343 B
Forth

fn next-random prev: int -> _/edi: int {
# https://en.wikipedia.org/wiki/Linear_congruential_generator#Parameters_in_common_use
var a/ecx: int <- copy 0x4b/75
var c/edx: int <- copy 0x4a/74
var m/ebx: int <- copy 0x10001
var next/eax: int <- copy prev
next <- multiply a
next <- add c
next <- remainder next, m
return next
}