mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 11:41:01 +00:00
target/riscv: add an internals.h header
The internals.h keeps things that are not relevant to the actual architecture, only to the implementation, separate. Backports f476f17740ad42288d42dd8fedcdae8ca7007a16
This commit is contained in:
parent
9db3b70869
commit
e4bc5056cd
24
qemu/target/riscv/internals.h
Normal file
24
qemu/target/riscv/internals.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* QEMU RISC-V CPU -- internal functions and types
|
||||
*
|
||||
* Copyright (c) 2020 T-Head Semiconductor Co., Ltd. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2 or later, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef RISCV_CPU_INTERNALS_H
|
||||
#define RISCV_CPU_INTERNALS_H
|
||||
|
||||
#include "hw/registerfields.h"
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue