QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
518 B
25 lines
518 B
/*
|
|
* QEMU target info stubs (target specific)
|
|
*
|
|
* 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"
|
|
#include "hw/boards.h"
|
|
#include "cpu.h"
|
|
|
|
static const TargetInfo target_info_stub = {
|
|
.target_name = TARGET_NAME,
|
|
.long_bits = TARGET_LONG_BITS,
|
|
.cpu_type = CPU_RESOLVING_TYPE,
|
|
.machine_typename = TYPE_MACHINE,
|
|
};
|
|
|
|
const TargetInfo *target_info(void)
|
|
{
|
|
return &target_info_stub;
|
|
}
|
|
|