9 lines
138 B
C
9 lines
138 B
C
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include "hal/hal.h"
|
|
#include "syscall.h"
|
|
|
|
int32_t SYSCALL0(sys_rand) {
|
|
return hal_randnum();
|
|
}
|