Commit | Line | Data |
---|---|---|
98fa08a5 | 1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
d16005f8 | 2 | /* |
98fa08a5 | 3 | * Copyright (C) 2019-2021 Paul Cercueil <paul@crapouillou.net> |
d16005f8 PC |
4 | */ |
5 | ||
6 | #ifndef __LIGHTREC_INTERPRETER_H__ | |
7 | #define __LIGHTREC_INTERPRETER_H__ | |
8 | ||
9 | #include "lightrec.h" | |
10 | ||
11 | struct block; | |
12 | ||
98fa08a5 | 13 | u32 lightrec_emulate_block(struct lightrec_state *state, struct block *block, u32 pc); |
cb72ea13 PC |
14 | u32 lightrec_handle_load_delay(struct lightrec_state *state, |
15 | struct block *block, u32 pc, u32 reg); | |
d16005f8 PC |
16 | |
17 | #endif /* __LIGHTREC_INTERPRETER_H__ */ |