| 1 | /* |
| 2 | * Toshiba TXx9 instructions translation routines |
| 3 | * |
| 4 | * Copyright (c) 2021 Philippe Mathieu-Daudé |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | */ |
| 8 | |
| 9 | #include "qemu/osdep.h" |
| 10 | #include "translate.h" |
| 11 | |
| 12 | bool decode_ext_txx9(DisasContext *ctx, uint32_t insn) |
| 13 | { |
| 14 | #if defined(TARGET_MIPS64) |
| 15 | if (decode_ext_tx79(ctx, insn)) { |
| 16 | return true; |
| 17 | } |
| 18 | #endif |
| 19 | return false; |
| 20 | } |