From: Edgar Grimberg Date: Fri, 5 Apr 2019 11:54:30 +0000 (+0200) Subject: Add ATMega64M1 X-Git-Tag: v1.7~30^2 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=71d6607c0a2ac5f3ac5820343f8e2e47c61d790a;p=sx%2Fsimavr.git Add ATMega64M1 Signed-off-by: Edgar Grimberg --- diff --git a/simavr/cores/sim_mega64m1.c b/simavr/cores/sim_mega64m1.c new file mode 100644 index 0000000..6ab78e0 --- /dev/null +++ b/simavr/cores/sim_mega64m1.c @@ -0,0 +1,43 @@ +/* + sim_mega64m1.c + + Copyright 2008, 2009 Michel Pollet + + 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 . + */ + +#include "sim_avr.h" + +#define SIM_VECTOR_SIZE 2 +#define SIM_MMCU "atmega64m1" +#define SIM_CORENAME mcu_mega64m1 + +#define _AVR_IO_H_ +#define __ASSEMBLER__ +#include "avr/iom64m1.h" +// instantiate the new core +#include "sim_megaxm1.h" + +static avr_t * make() +{ + return avr_core_allocate(&SIM_CORENAME.core, sizeof(struct mcu_t)); +} + +avr_kind_t mega64m1 = { + .names = { "atmega64m1" }, + .make = make +}; +