638d68f728fd82278bee9d854052c7df648489df
[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 #include <stdint.h>
27 #include <inttypes.h>
28
29 typedef uint64_t        avr_cycle_count_t;
30 typedef uint16_t        avr_io_addr_t;
31
32 /*
33  * this 'structure' is a packed representation of an IO register 'bit'
34  * (or consecutive bits). This allows a way to set/get/clear them.
35  * gcc is happy passing these as register value, so you don't need to
36  * use a pointer when passing them along to functions.
37  *
38  * 9 bits ought to be enough, as it's the maximum I've seen (atmega2560)
39  */
40 typedef struct avr_regbit_t {
41         uint32_t reg : 9, bit : 3, mask : 8;
42 } avr_regbit_t;
43
44 // printf() conversion specifier for avr_cycle_count_t
45 #define PRI_avr_cycle_count PRIu64
46
47 struct avr_t;
48
49 #endif /* __SIM_AVR_TYPES_H___ */