nand2/07_Operating_System/01_GPIO_Test/Sys.jack

16 lines
270 B
Plaintext
Raw Permalink Normal View History

2023-01-11 10:13:09 +00:00
/**
* 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;
}
}