mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Remove address masking
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5853 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
0e8f096751
commit
e64d7d595f
11 changed files with 45 additions and 43 deletions
4
hw/esp.c
4
hw/esp.c
|
@ -425,7 +425,7 @@ static uint32_t esp_mem_readb(void *opaque, target_phys_addr_t addr)
|
|||
ESPState *s = opaque;
|
||||
uint32_t saddr;
|
||||
|
||||
saddr = (addr >> s->it_shift) & (ESP_REGS - 1);
|
||||
saddr = addr >> s->it_shift;
|
||||
DPRINTF("read reg[%d]: 0x%2.2x\n", saddr, s->rregs[saddr]);
|
||||
switch (saddr) {
|
||||
case ESP_FIFO:
|
||||
|
@ -461,7 +461,7 @@ static void esp_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
|
|||
ESPState *s = opaque;
|
||||
uint32_t saddr;
|
||||
|
||||
saddr = (addr >> s->it_shift) & (ESP_REGS - 1);
|
||||
saddr = addr >> s->it_shift;
|
||||
DPRINTF("write reg[%d]: 0x%2.2x -> 0x%2.2x\n", saddr, s->wregs[saddr],
|
||||
val);
|
||||
switch (saddr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue