diff options
author | Chris Kilgour <techie@whiterocker.com> | 2010-02-23 22:32:14 -0800 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-03-08 11:30:09 -0600 |
commit | 1a8e2aaa3fb495e7f3d2ace1900fc104151b1b28 (patch) | |
tree | cf9cb888b0c187a9f4e9a4b9e63445ec7d50e6e8 /hw/pcnet.c | |
parent | de7890db9ed3baa07d3fcdd4beef1bdfc430ac2b (diff) | |
download | qemu-1a8e2aaa3fb495e7f3d2ace1900fc104151b1b28.zip |
pcnet APROMWE bit location (retry)
According to AMD document 21485D pp.141, APROMWE is bit 8 of BCR2.
Signed-off-by: Christopher Kilgour <techie@whiterocker.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pcnet.c')
-rw-r--r-- | hw/pcnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pcnet.c b/hw/pcnet.c index 44b5b31483..f88989888d 100644 --- a/hw/pcnet.c +++ b/hw/pcnet.c @@ -1601,7 +1601,7 @@ static void pcnet_aprom_writeb(void *opaque, uint32_t addr, uint32_t val) printf("pcnet_aprom_writeb addr=0x%08x val=0x%02x\n", addr, val); #endif /* Check APROMWE bit to enable write access */ - if (pcnet_bcr_readw(s,2) & 0x80) + if (pcnet_bcr_readw(s,2) & 0x100) s->prom[addr & 15] = val; } |