| 1 | /* |
| 2 | * QEMU RISC-V Disassembler for xlrbr matching the unratified Zbr CRC32 |
| 3 | * bitmanip extension v0.93. |
| 4 | * |
| 5 | * Copyright (c) 2023 Rivos Inc |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 8 | */ |
| 9 | |
| 10 | #ifndef DISAS_RISCV_XLRBR_H |
| 11 | #define DISAS_RISCV_XLRBR_H |
| 12 | |
| 13 | #include "disas/riscv.h" |
| 14 | |
| 15 | const rv_opcode_data *decode_xlrbr(rv_decode *, rv_isa); |
| 16 | |
| 17 | #endif /* DISAS_RISCV_XLRBR_H */ |