Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
17 lines
316 B
C
17 lines
316 B
C
/*
|
|
* QEMU MOS6522 VIA stubs
|
|
*
|
|
* Copyright (c) Linaro
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "monitor/monitor.h"
|
|
#include "monitor/hmp.h"
|
|
|
|
void hmp_info_via(Monitor *mon, const QDict *qdict)
|
|
{
|
|
monitor_printf(mon, "MOS6522 VIA is not available in this QEMU\n");
|
|
}
|