xref: /qemu/linux-user/m68k/target_proc.h (revision 8b7b9c5c)
1 /*
2  * M68K specific proc functions for linux-user
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  */
6 #ifndef M68K_TARGET_PROC_H
7 #define M68K_TARGET_PROC_H
8 
9 static int open_hardware(CPUArchState *cpu_env, int fd)
10 {
11     dprintf(fd, "Model:\t\tqemu-m68k\n");
12     return 0;
13 }
14 #define HAVE_ARCH_PROC_HARDWARE
15 
16 #endif /* M68K_TARGET_PROC_H */
17