Jason Xu 9c5c2813a0 Update QEMU command in all README and Makefile | vor 2 Jahren | |
---|---|---|
.. | ||
Makefile | vor 5 Jahren | |
Makefile.clang | vor 2 Jahren | |
Makefile.gcc | vor 2 Jahren | |
OLVASSEL.md | vor 6 Jahren | |
README.md | vor 6 Jahren | |
gpio.h | vor 6 Jahren | |
kernel8.img | vor 4 Jahren | |
link.ld | vor 6 Jahren | |
main.c | vor 6 Jahren | |
mbox.c | vor 6 Jahren | |
mbox.h | vor 6 Jahren | |
rand.c | vor 4 Jahren | |
rand.h | vor 6 Jahren | |
start.S | vor 3 Jahren | |
uart.c | vor 3 Jahren | |
uart.h | vor 6 Jahren |
This going to be an easy tutorial. We query a number from the (undocumented) hardware random number generator. You can use this to implement a simple, but accurate dice throw in any game. It is important as without hardware support you can only generate pseudo-random numbers.
rand_init()
initializes the hardware.
rand(min,max)
returns a random number between min and max.
We query a random value and then we display it on the serial console.