]>
Commit | Line | Data |
---|---|---|
0ee10242 AF |
1 | #ifndef QEMU_HW_CHAR_LM32_JUART_H |
2 | #define QEMU_HW_CHAR_LM32_JUART_H | |
15d7dc4f | 3 | |
a27bd6c7 | 4 | #include "hw/qdev-core.h" |
15d7dc4f | 5 | |
a0b97927 AF |
6 | #define TYPE_LM32_JUART "lm32-juart" |
7 | ||
15d7dc4f MW |
8 | uint32_t lm32_juart_get_jtx(DeviceState *d); |
9 | uint32_t lm32_juart_get_jrx(DeviceState *d); | |
10 | void lm32_juart_set_jtx(DeviceState *d, uint32_t jtx); | |
11 | void lm32_juart_set_jrx(DeviceState *d, uint32_t jrx); | |
12 | ||
175de524 | 13 | #endif /* QEMU_HW_CHAR_LM32_JUART_H */ |