19 lines
191 B
C
19 lines
191 B
C
/*
|
|
* opdracht 1.3.c
|
|
*
|
|
* Created: 10-2-2021 09:28:10
|
|
* Author : Sem
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
|
|
|
|
int main(void)
|
|
{
|
|
/* Replace with your application code */
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|