]> Git Repo - qemu.git/blame_incremental - hw/sun4m.h
net, hub: fix the indent in the comments
[qemu.git] / hw / sun4m.h
... / ...
CommitLineData
1#ifndef SUN4M_H
2#define SUN4M_H
3
4#include "qemu-common.h"
5
6/* Devices used by sparc32 system. */
7
8/* iommu.c */
9void sparc_iommu_memory_rw(void *opaque, hwaddr addr,
10 uint8_t *buf, int len, int is_write);
11static inline void sparc_iommu_memory_read(void *opaque,
12 hwaddr addr,
13 uint8_t *buf, int len)
14{
15 sparc_iommu_memory_rw(opaque, addr, buf, len, 0);
16}
17
18static inline void sparc_iommu_memory_write(void *opaque,
19 hwaddr addr,
20 uint8_t *buf, int len)
21{
22 sparc_iommu_memory_rw(opaque, addr, buf, len, 1);
23}
24
25/* slavio_intctl.c */
26void slavio_pic_info(Monitor *mon, DeviceState *dev);
27void slavio_irq_info(Monitor *mon, DeviceState *dev);
28
29/* sun4m.c */
30void sun4m_pic_info(Monitor *mon);
31void sun4m_irq_info(Monitor *mon);
32
33/* sparc32_dma.c */
34#include "sparc32_dma.h"
35
36#endif
This page took 0.020004 seconds and 4 git commands to generate.