| 1 | /* |
| 2 | * QEMU MOS6522 VIA stubs |
| 3 | * |
| 4 | * Copyright (c) Linaro |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | */ |
| 8 | |
| 9 | #include "qemu/osdep.h" |
| 10 | #include "monitor/monitor.h" |
| 11 | #include "monitor/hmp.h" |
| 12 | |
| 13 | #ifdef CONFIG_HMP |
| 14 | void hmp_info_via(MonitorHMP *hmp, const QDict *qdict) |
| 15 | { |
| 16 | monitor_hmp_printf(hmp, "MOS6522 VIA is not available in this QEMU\n"); |
| 17 | } |
| 18 | #endif |