bass and loop in asm

This commit is contained in:
Joachim Fenkes 2012-08-11 13:03:26 +02:00
parent 5f96c41f5f
commit db7376f914
2 changed files with 127 additions and 5 deletions

14
avr/Makefile Normal file
View file

@ -0,0 +1,14 @@
all: flash
noiseplug.elf: noiseplug.S
avr-gcc -Os -nostdlib -mmcu=attiny9 -o $@ $<
noiseplug.hex: noiseplug.elf
avr-objcopy -O ihex $< $@
flash: noiseplug.hex
avrdude -cavrisp2 -Pusb -pt8 -Uflash:w:$<:a
dump: noiseplug.elf
avr-objdump -Sr $< | less