added ressources and start makefile

This commit is contained in:
hugogogo
2025-03-03 14:43:44 +01:00
parent ec5088a9ec
commit a8b9abffe0
5 changed files with 14 additions and 0 deletions

11
module00/ex00/Makefile Normal file
View File

@@ -0,0 +1,11 @@
# Set the frequency of the CPU (in Hz)
F_CPU = 16000000UL
all: hex flash
hex:
flash:
clean:
rm -f main.hex main.bin

3
module00/ex00/main.c Normal file
View File

@@ -0,0 +1,3 @@
int main() {
return 0;
}