projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9628e8d
)
pcnet APROMWE bit location (retry)
author
Chris Kilgour
<techie@whiterocker.com>
Wed, 24 Feb 2010 06:32:14 +0000
(22:32 -0800)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Mon, 8 Mar 2010 17:30:09 +0000
(11:30 -0600)
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>
hw/pcnet.c
patch
|
blob
|
history
diff --git
a/hw/pcnet.c
b/hw/pcnet.c
index 44b5b31483658ad53246bd3aca656851fa7aa1f9..f88989888d8d9a0a507b2e3af5d10e6b1703ce06 100644
(file)
--- 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) & 0x
8
0)
+ if (pcnet_bcr_readw(s,2) & 0x
10
0)
s->prom[addr & 15] = val;
}