semihosting: Use console_in_gf for SYS_READC
[qemu/rayw.git] / accel / tcg / internal.h
blob3092bfa96430f6a7b1717529d30ffd8964fdbdf3
1 /*
2 * Internal execution defines for qemu
4 * Copyright (c) 2003 Fabrice Bellard
6 * SPDX-License-Identifier: LGPL-2.1-or-later
7 */
9 #ifndef ACCEL_TCG_INTERNAL_H
10 #define ACCEL_TCG_INTERNAL_H
12 #include "exec/exec-all.h"
14 TranslationBlock *tb_gen_code(CPUState *cpu, target_ulong pc,
15 target_ulong cs_base, uint32_t flags,
16 int cflags);
17 G_NORETURN void cpu_io_recompile(CPUState *cpu, uintptr_t retaddr);
18 void page_init(void);
19 void tb_htable_init(void);
21 #endif /* ACCEL_TCG_INTERNAL_H */