-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcommon.h
More file actions
42 lines (30 loc) · 735 Bytes
/
common.h
File metadata and controls
42 lines (30 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// This file is part of the PiEMU Project
// Licensing information can be found in the LICENSE file
// (C) 2014 Nandor Licker. All rights reserved.
#ifndef __COMMON_H__
#define __COMMON_H__
// C includes
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cassert>
// C++ includes
#include <vector>
#include <sstream>
#include <fstream>
#include <iostream>
#include <exception>
#include <stdexcept>
#include <iomanip>
#include <streambuf>
// Linux includes
#include <ftw.h>
// Compiler specific macros
#define FORCEINLINE __attribute__((always_inline))
// Emulator includes
#include "exception.h"
#include "memory.h"
#include "arch/arm.h"
#include "arch/thumb.h"
#include "emulator.h"
#endif /*__COMMON_H__*/