nand2/07_Operating_System/01_GPIO_Test/Sys.jack
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

16 lines
270 B
Plaintext

/**
* A library that supports various program execution services.
*/
class Sys {
/** Performs all the initializations required by the OS. */
function void init() {
do GPIO.init(4096);
while (true){
do GPIO.writeLed(GPIO.readBut());
}
return;
}
}