OpenTTD Source  1.11.2
endian_type.hpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD 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, version 2.
4  * OpenTTD 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.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef ENDIAN_TYPE_HPP
11 #define ENDIAN_TYPE_HPP
12 
13 #if defined(ARM) || defined(__arm__) || defined(__alpha__)
14 
15 # define OTTD_ALIGNMENT 1
16 #else
17 
18 # define OTTD_ALIGNMENT 0
19 #endif
20 
22 #define TTD_LITTLE_ENDIAN 0
23 
24 #define TTD_BIG_ENDIAN 1
25 
26 #if !defined(TTD_ENDIAN)
27 # error "TTD_ENDIAN is not defined; please set it to either TTD_LITTLE_ENDIAN or TTD_BIG_ENDIAN"
28 #endif /* !TTD_ENDIAN */
29 
30 #endif /* ENDIAN_TYPE_HPP */