--- /dev/null
+/*
+ sim_tiny13.c
+
+ Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
+ Jon Escombe <lists@dresco.co.uk>
+
+ This file is part of simavr.
+
+ simavr is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ simavr is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with simavr. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include </usr/include/stdio.h>
+#include "sim_avr.h"
+#include "sim_core_declare.h"
+#include "avr_eeprom.h"
+#include "avr_ioport.h"
+#include "avr_timer8.h"
+
+#define _AVR_IO_H_
+#define __ASSEMBLER__
+#include "avr/iotn13.h"
+
+static void init(struct avr_t * avr);
+static void reset(struct avr_t * avr);
+
+
+static struct mcu_t {
+ avr_t core;
+ avr_eeprom_t eeprom;
+ avr_ioport_t portb;
+ avr_timer8_t timer0;
+} mcu = {
+ .core = {
+ .mmcu = "attiny13",
+
+ /*
+ * tiny13 has no extended fuse byte, so can not use DEFAULT_CORE macro
+ */
+ .ramend = RAMEND,
+ .flashend = FLASHEND,
+ .e2end = E2END,
+ .vector_size = 2,
+ .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 },
+ .fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT },
+
+ .init = init,
+ .reset = reset,
+ },
+ AVR_EEPROM_DECLARE_8BIT(EE_RDY_vect),
+ .portb = {
+ .name = 'B', .r_port = PORTB, .r_ddr = DDRB, .r_pin = PINB,
+ .pcint = {
+ .enable = AVR_IO_REGBIT(GIMSK, PCIE),
+ .raised = AVR_IO_REGBIT(GIFR, PCIF),
+ .vector = PCINT0_vect,
+ },
+ .r_pcint = PCMSK,
+ },
+ .timer0 = {
+ .name = '0',
+ .wgm = { AVR_IO_REGBIT(TCCR0A, WGM00), AVR_IO_REGBIT(TCCR0A, WGM01), AVR_IO_REGBIT(TCCR0B, WGM02) },
+ .cs = { AVR_IO_REGBIT(TCCR0B, CS00), AVR_IO_REGBIT(TCCR0B, CS01), AVR_IO_REGBIT(TCCR0B, CS02) },
+ .cs_div = { 0, 0, 3 /* 8 */, 6 /* 64 */, 8 /* 256 */, 10 /* 1024 */ },
+
+ .r_ocra = OCR0A,
+ .r_ocrb = OCR0B,
+ .r_tcnt = TCNT0,
+
+ .overflow = {
+ .enable = AVR_IO_REGBIT(TIMSK0, TOIE0),
+ .raised = AVR_IO_REGBIT(TIFR0, TOV0),
+ .vector = TIM0_OVF_vect,
+ },
+ .compa = {
+ .enable = AVR_IO_REGBIT(TIMSK0, OCIE0A),
+ .raised = AVR_IO_REGBIT(TIFR0, OCF0A),
+ .vector = TIM0_COMPA_vect,
+ },
+ .compb = {
+ .enable = AVR_IO_REGBIT(TIMSK0, OCIE0B),
+ .raised = AVR_IO_REGBIT(TIFR0, OCF0B),
+ .vector = TIM0_COMPB_vect,
+ },
+ },
+};
+
+static avr_t * make()
+{
+ return &mcu.core;
+}
+
+avr_kind_t tiny13 = {
+ .names = { "attiny13", "attiny13a" },
+ .make = make
+};
+
+static void init(struct avr_t * avr)
+{
+ struct mcu_t * mcu = (struct mcu_t*)avr;
+
+ printf("%s init\n", avr->mmcu);
+
+ avr_eeprom_init(avr, &mcu->eeprom);
+ avr_ioport_init(avr, &mcu->portb);
+ avr_timer8_init(avr, &mcu->timer0);
+}
+
+static void reset(struct avr_t * avr)
+{
+// struct mcu_t * mcu = (struct mcu_t*)avr;
+}
if (!eempe && avr_regbit_get(avr, p->eempe)) {
avr_cycle_timer_register(avr, 4, avr_eempe_clear, p);
}
-
+
if (eempe && avr_regbit_get(avr, p->eepe)) { // write operation
- uint16_t addr = avr->data[p->r_eearl] | (avr->data[p->r_eearh] << 8);
+ uint16_t addr;
+ if (p->r_eearh)
+ addr = avr->data[p->r_eearl] | (avr->data[p->r_eearh] << 8);
+ else
+ addr = avr->data[p->r_eearl];
// printf("eeprom write %04x <- %02x\n", addr, avr->data[p->r_eedr]);
p->eeprom[addr] = avr->data[p->r_eedr];
// Automatically clears that bit (?)
avr_cycle_timer_register_usec(avr, 3400, avr_eei_raise, p); // 3.4ms here
}
if (avr_regbit_get(avr, p->eere)) { // read operation
- uint16_t addr = avr->data[p->r_eearl] | (avr->data[p->r_eearh] << 8);
+ uint16_t addr;
+ if (p->r_eearh)
+ addr = avr->data[p->r_eearl] | (avr->data[p->r_eearh] << 8);
+ else
+ addr = avr->data[p->r_eearl];
avr->data[p->r_eedr] = p->eeprom[addr];
// printf("eeprom read %04x : %02x\n", addr, p->eeprom[addr]);
}
},\
}
+/*
+ * macro definition without a high address bit register,
+ * which is not implemented in some tiny AVRs.
+ */
+
+#define AVR_EEPROM_DECLARE_8BIT(_vector) \
+ .eeprom = {\
+ .size = E2END+1,\
+ .r_eearl = EEARL,\
+ .r_eedr = EEDR,\
+ .r_eecr = EECR,\
+ .eepm = { AVR_IO_REGBIT(EECR, EEPM0), AVR_IO_REGBIT(EECR, EEPM1) },\
+ .eempe = AVR_IO_REGBIT(EECR, EEMPE),\
+ .eepe = AVR_IO_REGBIT(EECR, EEPE),\
+ .eere = AVR_IO_REGBIT(EECR, EERE),\
+ .ready = {\
+ .enable = AVR_IO_REGBIT(EECR, EERIE),\
+ .vector = _vector,\
+ },\
+ }
+
#endif /* __AVR_EEPROM_H__ */