Commit 71d6607c0a2ac5f3ac5820343f8e2e47c61d790a
authorEdgar Grimberg <edgar.grimberg@visuray.com>
Fri, 5 Apr 2019 11:54:30 +0000 (13:54 +0200)
committerEdgar Grimberg <edgar.grimberg@visuray.com>
Fri, 5 Apr 2019 11:54:30 +0000 (13:54 +0200)
Signed-off-by: Edgar Grimberg <edgar.grimberg@visuray.com>
simavr/cores/sim_mega64m1.c [new file with mode: 0644]

diff --git a/simavr/cores/sim_mega64m1.c b/simavr/cores/sim_mega64m1.c
new file mode 100644 (file)
index 0000000..6ab78e0
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+       sim_mega64m1.c
+
+       Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
+
+       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 "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
+};
+