mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
661f1929d0
This allows to drop various stubs and move the i8359 into hwlib. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
14 lines
372 B
C
14 lines
372 B
C
#ifndef QEMU_HW_LM32_PIC_H
|
|
#define QEMU_HW_LM32_PIC_H
|
|
|
|
#include "qemu-common.h"
|
|
|
|
uint32_t lm32_pic_get_ip(DeviceState *d);
|
|
uint32_t lm32_pic_get_im(DeviceState *d);
|
|
void lm32_pic_set_ip(DeviceState *d, uint32_t ip);
|
|
void lm32_pic_set_im(DeviceState *d, uint32_t im);
|
|
|
|
void lm32_do_pic_info(Monitor *mon);
|
|
void lm32_irq_info(Monitor *mon);
|
|
|
|
#endif /* QEMU_HW_LM32_PIC_H */
|