diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-10-30 21:23:39 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-10-30 21:23:39 +0000 |
commit | 24741ef3de1de0e5dca6ebf621d405f2ac0919af (patch) | |
tree | 5a3223441fd4f8fa55e19fdbed8ccd8ef5148041 /exec.c | |
parent | 74c33bed31839bbff861877194a5a39f8000c284 (diff) | |
download | qemu-24741ef3de1de0e5dca6ebf621d405f2ac0919af.zip |
avoid using physical accesses in user emulation
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1592 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -2152,20 +2152,6 @@ void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf, } } -/* never used */ -uint32_t ldl_phys(target_phys_addr_t addr) -{ - return 0; -} - -void stl_phys_notdirty(target_phys_addr_t addr, uint32_t val) -{ -} - -void stl_phys(target_phys_addr_t addr, uint32_t val) -{ -} - #else void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf, int len, int is_write) |