master
h 17 lines 337 Bytes
Raw
1 /*
2 * QEMU page protection (system emulation)
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * SPDX-License-Identifier: LGPL-2.1-or-later
7 */
8 #ifndef SYSTEM_PAGE_PROTECTION_H
9 #define SYSTEM_PAGE_PROTECTION_H
10
11 #include "system/ram_addr.h"
12
13 void tlb_protect_code(ram_addr_t ram_addr);
14 void tlb_unprotect_code(ram_addr_t ram_addr);
15
16 #endif
17