Attiny12-8 core needed

I recently bought an Attiny 12 and wanted to put some code on it. Unfortunately I can't find a core for the Attiny 12. Does anyone know where I can get one?

Thanks in advance,
Hugo S

Why?

I bought it because it was the only attiny in stock at the shop I bought my electronics from at the time and because the cod I want to run on it isn't very big.

Nor, could I. But, how is your assembly?
ATTiny12 Making Lemonade out of Lemons | AVR Freaks

&

Atmel’s AVR ATTiny12 and OSX – Bartek's Blog (wordpress.com)

rm -f micro.o micro.hex micro.elf micro.objdump

echo "C compiler" &&\
avr-gcc -Wall -ffunction-sections -fdata-sections -g -O4 -mmcu=at90s2313 -c micro.c &&\
echo "C linker" &&\
avr-gcc -Wl,--gc-sections -mmcu=attiny12 -o micro.elf micro.o &&\
echo "C dumps" &&\
avr-objcopy -j .text -O ihex micro.elf micro.hex &&\
avr-objdump -h -d micro.elf > micro.objdump &&\
echo "C done"

#sudo avrdude -v -p t12 -c usbasp -Uflash:w:micro.hex -Ereset,vcc

avr-tiny12-microphone/go at master · barteksalsa/avr-tiny12-microphone · GitHub

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.