mingw: make simavr compilable with MinGW
[simavr] / simavr / sim / sim_avr_types.h
1 /*
2         sim_avr_types.h
3
4         Copyright 2008-2012 Michel Pollet <buserror@gmail.com>
5
6         This file is part of simavr.
7
8         simavr is free software: you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 3 of the License, or
11         (at your option) any later version.
12
13         simavr is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License
19         along with simavr.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #ifndef __SIM_AVR_TYPES_H___
24 #define __SIM_AVR_TYPES_H___
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 #include <stdint.h>
31 #include <inttypes.h>
32
33 typedef uint64_t        avr_cycle_count_t;
34 typedef uint16_t        avr_io_addr_t;
35
36 /*
37  * this 'structure' is a packed representation of an IO register 'bit'
38  * (or consecutive bits). This allows a way to set/get/clear them.
39  * gcc is happy passing these as register value, so you don't need to
40  * use a pointer when passing them along to functions.
41  *
42  * 9 bits ought to be enough, as it's the maximum I've seen (atmega2560)
43  */
44 typedef struct avr_regbit_t {
45         uint32_t reg : 9, bit : 3, mask : 8;
46 } avr_regbit_t;
47
48 // printf() conversion specifier for avr_cycle_count_t
49 #define PRI_avr_cycle_count PRIu64
50
51 struct avr_t;
52
53 #ifdef __cplusplus
54 };
55 #endif
56
57 #endif /* __SIM_AVR_TYPES_H___ */