mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-07 20:43:40 +00:00
9c8ef5c48f
This split is similar to the atmega328p/arduino split and may be helpful for adding other attiny85 boards or using the attiny85 without a board.
17 lines
289 B
JSON
17 lines
289 B
JSON
{
|
|
"inherits": ["avr"],
|
|
"cpu": "attiny85",
|
|
"build-tags": ["attiny85", "attiny", "avr2", "avr25"],
|
|
"cflags": [
|
|
"-mmcu=attiny85"
|
|
],
|
|
"ldflags": [
|
|
"-mmcu=avr25"
|
|
],
|
|
"linkerscript": "src/device/avr/attiny85.ld",
|
|
"extra-files": [
|
|
"targets/avr.S",
|
|
"src/device/avr/attiny85.s"
|
|
]
|
|
}
|