Rev 1667 | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1668 | runge | 1 | # device name high low ext boot start |
| 2 | my @device0 = ('unknown', '', '', '', '', ); |
||
| 3 | my @device1 = ('atmega8', '0xd4', '0x24', '', '0x1e00'); |
||
| 4 | my @device2 = ('atmega48', '', '', '', '', ); |
||
| 5 | my @device3 = ('atmega88', '0xdc', '0xe2', '0x04', '0x1e00'); |
||
| 6 | my @device4 = ('atmega168', '0xdc', '0xe2', '0x02', '0x3c00'); |
||
| 7 | my @device5 = ('atmega328p', '0xdc', '0xe2', '0x04', '0x7c00'); |
||
| 1640 | arune | 8 | |
| 9 | @devices = (\@device0, \@device1, \@device2, \@device3, \@device4, \@device5); |
||
| 10 |