mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Register only valid register access widths
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3881 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
ff403da6a7
commit
7c56045670
13 changed files with 112 additions and 107 deletions
|
@ -198,14 +198,14 @@ static void dma_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
|
|||
}
|
||||
|
||||
static CPUReadMemoryFunc *dma_mem_read[3] = {
|
||||
dma_mem_readl,
|
||||
dma_mem_readl,
|
||||
NULL,
|
||||
NULL,
|
||||
dma_mem_readl,
|
||||
};
|
||||
|
||||
static CPUWriteMemoryFunc *dma_mem_write[3] = {
|
||||
dma_mem_writel,
|
||||
dma_mem_writel,
|
||||
NULL,
|
||||
NULL,
|
||||
dma_mem_writel,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue