osdep: protect qemu/osdep.h with extern "C"
[qemu/ar7.git] / target / mips / txx9_translate.c
blob8a2c0b766bd7f7ad42b84a2319133f4ba4ba9444
1 /*
2 * Toshiba TXx9 instructions translation routines
4 * Copyright (c) 2021 Philippe Mathieu-Daudé
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
9 #include "qemu/osdep.h"
10 #include "translate.h"
12 bool decode_ext_txx9(DisasContext *ctx, uint32_t insn)
14 #if defined(TARGET_MIPS64)
15 if (decode_ext_tx79(ctx, insn)) {
16 return true;
18 #endif
19 return false;