add attiny2313 hello world

This commit is contained in:
agh
2020-12-03 15:32:43 +01:00
parent b8b860c84d
commit 84c6ad9ac0
2 changed files with 25 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#/bin/bash
#avr-gcc -std=c99 -Os -Wall -mmcu=attiny2313 -S -o hello.s hello.c
#avr-gcc -Os -Wall -mmcu=attiny2313 -c -o hello.o hello.s
#avr-gcc -Os -Wall -mmcu=attiny2313 -o hello.out hello.o
#avr-strip hello.out
avr-gcc -Os -std=c99 -Wall -mmcu=attiny2313 -o hello.out hello.c
avr-strip hello.out