7 lines
131 B
C++
7 lines
131 B
C++
|
#include "interrupts/Context.h"
|
||
|
#include "rand/Mersenne.h"
|
||
|
|
||
|
void sys_rand(Context* context)
|
||
|
{
|
||
|
context->rax = Mersenne::get();
|
||
|
}
|