CHG: port of noiseplug to the attiny13

This commit is contained in:
Juan José Gutiérrez de Quevedo Pérez 2015-12-08 16:45:13 +00:00
parent fdf6025998
commit ec37e67722
2 changed files with 88 additions and 70 deletions

View file

@ -4,11 +4,11 @@
all: flash
noiseplug.o: noiseplug.S
avr-gcc -Os -nostdlib -mmcu=attiny9 -o $@ -c $<
noiseplug.o: noiseplug.s
avr-gcc -Os -nostdlib -mmcu=attiny13 -o $@ -c $<
noiseplug.elf: noiseplug.o
avr-gcc -Os -nostdlib -mmcu=attiny9 -o $@ $<
avr-gcc -Os -nostdlib -mmcu=attiny13 -o $@ $<
noiseplug.hex: noiseplug.elf
avr-objcopy -O ihex $< $@
@ -18,4 +18,4 @@ flash: noiseplug.hex
dump: noiseplug.elf
avr-objdump -Sr $< | less