~ahs3/+junk/cq-qemu

« back to all changes in this revision

Viewing changes to hw/sparc32_dma.h

  • Committer: Al Stone
  • Date: 2012-02-09 01:17:20 UTC
  • Revision ID: albert.stone@canonical.com-20120209011720-tztl7ik3qayz80p4
first commit to bzr for qemu

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SPARC32_DMA_H
 
2
#define SPARC32_DMA_H
 
3
 
 
4
/* sparc32_dma.c */
 
5
void ledma_memory_read(void *opaque, target_phys_addr_t addr,
 
6
                       uint8_t *buf, int len, int do_bswap);
 
7
void ledma_memory_write(void *opaque, target_phys_addr_t addr,
 
8
                        uint8_t *buf, int len, int do_bswap);
 
9
void espdma_memory_read(void *opaque, uint8_t *buf, int len);
 
10
void espdma_memory_write(void *opaque, uint8_t *buf, int len);
 
11
 
 
12
#endif