diff options
author | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-10 02:56:56 +0000 |
---|---|---|
committer | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-10 02:56:56 +0000 |
commit | 9748aecca6cad6a4a1782b415445d086af4e2bba (patch) | |
tree | 71de495bb1a8873d07c1fa272b3746e32b831488 /MdePkg/Library/BaseLib/Ipf | |
parent | ace425da363ca731aa174bcf1975429f9e1531ab (diff) | |
download | edk2-platforms-9748aecca6cad6a4a1782b415445d086af4e2bba.tar.xz |
1. Fixed a logical error in PciReadBuffer() and PciWriteBuffer()
2. Fixed GetInterruptState() on IPF to return the state of interrupts correctly
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@850 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/Ipf')
-rw-r--r-- | MdePkg/Library/BaseLib/Ipf/GetInterruptState.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/Ipf/GetInterruptState.s b/MdePkg/Library/BaseLib/Ipf/GetInterruptState.s index 66eb17f3df..d5b5fc852f 100644 --- a/MdePkg/Library/BaseLib/Ipf/GetInterruptState.s +++ b/MdePkg/Library/BaseLib/Ipf/GetInterruptState.s @@ -22,6 +22,6 @@ .type GetInterruptState, @function
GetInterruptState::
mov r8 = psr
- dep.z r8 = r8, 14, 1
+ extr.u r8 = r8, 14, 1
br.ret.sptk.many b0
.endp GetInterruptState
|