diff options
| author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-26 17:36:03 +0000 |
|---|---|---|
| committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-26 17:36:03 +0000 |
| commit | db7b5426a4b424249b4aba3496bf14da69a6625b (patch) | |
| tree | 03a9595eeb023f3534a302a06e243546444bdcdb /cpu-all.h | |
| parent | 57074f98bb109a1b8b83e1125b151d0426fc97da (diff) | |
| download | focaccia-qemu-db7b5426a4b424249b4aba3496bf14da69a6625b.tar.gz focaccia-qemu-db7b5426a4b424249b4aba3496bf14da69a6625b.zip | |
Implement generic sub-page I/O based on earlier work by J. Mayer.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2868 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-all.h')
| -rw-r--r-- | cpu-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu-all.h b/cpu-all.h index 5f0a7e9894..5db290356e 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -858,6 +858,7 @@ extern uint8_t *phys_ram_dirty; exception, the write memory callback gets the ram offset instead of the physical address */ #define IO_MEM_ROMD (1) +#define IO_MEM_SUBPAGE (2) typedef void CPUWriteMemoryFunc(void *opaque, target_phys_addr_t addr, uint32_t value); typedef uint32_t CPUReadMemoryFunc(void *opaque, target_phys_addr_t addr); |