mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:17 +00:00
Placed in a separate file as a vendor extension. Signed-off-by: James Wainwright <james.wainwright@lowrisc.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-ID: <20260320134254.217123-4-james.wainwright@lowrisc.org> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
20 lines
402 B
C
20 lines
402 B
C
/*
|
|
* QEMU RISC-V Disassembler for xlrbr matching the unratified Zbr CRC32
|
|
* bitmanip extension v0.93.
|
|
*
|
|
* Copyright (c) 2023 Rivos Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef DISAS_RISCV_XLRBR_H
|
|
#define DISAS_RISCV_XLRBR_H
|
|
|
|
#include "disas/riscv.h"
|
|
|
|
extern const rv_opcode_data rv_xlrbr_opcode_data[];
|
|
|
|
void decode_xlrbr(rv_decode *, rv_isa);
|
|
|
|
#endif /* DISAS_RISCV_XLRBR_H */
|