The MIPS Malta is an ATX form factor evaluation board made by MIPS Technologies. Malta board is the most popular platform for MIPS full-system emulation. See https://www.linux-mips.org/wiki/MIPS_Malta for details. Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Remy Luisant <remy@luisant.ca>
12 lines
281 B
C
12 lines
281 B
C
/*
|
|
* Copyright (c) 2020, 2021 Antony Pavlov <antonynpavlov@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __QEMU_MALTA_SOC_H__
|
|
#define __QEMU_MALTA_SOC_H__
|
|
|
|
#define MIPS_MACHINE_TIMER_IRQ 7 /* Machine Timer Interrupt */
|
|
|
|
#endif /* __QEMU_MALTA_SOC_H__ */
|