Commit 805168caa5f717e363cd265ea8fcb3d7beeeb7aa
authorDoug Goldstein <cardoe@cardoe.com>
Fri, 7 Mar 2014 04:55:20 +0000 (22:55 -0600)
committerDoug Goldstein <cardoe@cardoe.com>
Sat, 15 Mar 2014 18:40:02 +0000 (13:40 -0500)
mega48, mega88, and mega168 all share a common header and rely on their
platform to be defined prior to their headers being included.

3 files changed:
simavr/cores/sim_mega168.c
simavr/cores/sim_mega48.c
simavr/cores/sim_mega88.c

index 1ed79d3665bcf3f145a617459cfbfcad1d2f360a..c84a36a69dd808216da62d29e9f1e1a52302e786 100644 (file)
@@ -27,6 +27,7 @@
 
 #define _AVR_IO_H_
 #define __ASSEMBLER__
+#define __AVR_ATmega168__
 #include "avr/iom168.h"
 // instantiate the new core
 #include "sim_megax8.h"
index 82bde2d49273807fcdbb9f7602898a32279a867f..2cdf31d82e8f46372d3d852e1709678a7e8d34c7 100644 (file)
@@ -27,6 +27,7 @@
 
 #define _AVR_IO_H_
 #define __ASSEMBLER__
+#define __AVR_ATmega48__
 #include "avr/iom48.h"
 // instantiate the new core
 #include "sim_megax8.h"
index ed11b3e4616b0c18fbacdee0fc815aac6e38106a..fd306d18baefe92e5504c0abddad56b041c1eb5d 100644 (file)
@@ -27,6 +27,7 @@
 
 #define _AVR_IO_H_
 #define __ASSEMBLER__
+#define __AVR_ATmega88__
 #include "avr/iom88.h"
 // instantiate the new core
 #include "sim_megax8.h"