bass and loop in asm
This commit is contained in:
parent
5f96c41f5f
commit
db7376f914
2 changed files with 127 additions and 5 deletions
14
avr/Makefile
Normal file
14
avr/Makefile
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue