Ai
1 Star 0 Fork 0

dfrobot_ai/qemu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
target-info.c 515 Bytes
一键复制 编辑 原始数据 按行查看 历史
Philippe Mathieu-Daudé 提交于 2025-03-23 20:20 +08:00 . qemu: Introduce target_long_bits()
/*
* QEMU target info helpers
*
* Copyright (c) Linaro
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "qemu/osdep.h"
#include "qemu/target-info.h"
#include "qemu/target-info-impl.h"
const char *target_name(void)
{
return target_info()->target_name;
}
unsigned target_long_bits(void)
{
return target_info()->long_bits;
}
const char *target_cpu_type(void)
{
return target_info()->cpu_type;
}
const char *target_machine_typename(void)
{
return target_info()->machine_typename;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dfrobot_ai/qemu.git
git@gitee.com:dfrobot_ai/qemu.git
dfrobot_ai
qemu
qemu
master

搜索帮助