1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-05 06:38:40 +11:00
collapseos/kernel/random.asm

29 lines
564 B
NASM

; Part of kernel because ideally we have some sort of entropy. For now,
; just having it be user-provided for prototypical purposes.
; Implementation by John Metcalf of
; http://www.retroprogramming.com/2017/07/xorshift-pseudorandom-numbers-in-z80.html
; (Slightly altered for CollapseOS)
;
; 16-bit xorshift pseudorandom number generator
;
; in: hl = seed
; out: hl = pseudorandom number (generally fed into the next call)
; corrupts a
rnd:
ld a,h
rra
ld a,l
rra
xor h
ld h,a
ld a,l
rra
ld a,h
rra
xor l
ld l,a
xor h
ld h,a
ret