xref: /qemu/include/exec/mmu-access-type.h (revision 671558d2)
1 /*
2  * QEMU MMU Access type definitions
3  *
4  * Copyright (c) 2012 SUSE LINUX Products GmbH
5  *
6  * SPDX-License-Identifier: GPL-2.0-or-later
7  */
8 #ifndef EXEC_MMU_ACCESS_TYPE_H
9 #define EXEC_MMU_ACCESS_TYPE_H
10 
11 typedef enum MMUAccessType {
12     MMU_DATA_LOAD  = 0,
13     MMU_DATA_STORE = 1,
14     MMU_INST_FETCH = 2
15 #define MMU_ACCESS_COUNT 3
16 } MMUAccessType;
17 
18 #endif
19