Jason Xu 9c5c2813a0 Update QEMU command in all README and Makefile | hace 2 años | |
---|---|---|
.. | ||
Makefile | hace 5 años | |
Makefile.clang | hace 2 años | |
Makefile.gcc | hace 2 años | |
OLVASSEL.md | hace 6 años | |
README.md | hace 6 años | |
gpio.h | hace 6 años | |
kernel8.img | hace 4 años | |
link.ld | hace 6 años | |
main.c | hace 6 años | |
mbox.c | hace 6 años | |
mbox.h | hace 6 años | |
rand.c | hace 4 años | |
rand.h | hace 6 años | |
start.S | hace 3 años | |
uart.c | hace 3 años | |
uart.h | hace 6 años |
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.