qemu/include/hw/char/lm32_juart.h
<<
>>
Prefs
   1#ifndef QEMU_HW_CHAR_LM32_JUART_H
   2#define QEMU_HW_CHAR_LM32_JUART_H
   3
   4#include "hw/qdev.h"
   5
   6#define TYPE_LM32_JUART "lm32-juart"
   7
   8uint32_t lm32_juart_get_jtx(DeviceState *d);
   9uint32_t lm32_juart_get_jrx(DeviceState *d);
  10void lm32_juart_set_jtx(DeviceState *d, uint32_t jtx);
  11void lm32_juart_set_jrx(DeviceState *d, uint32_t jrx);
  12
  13#endif /* QEMU_HW_LM32_JUART_H */
  14