Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. PSATA_PCI_CFG configHeader(byte busNo, byte deviceNo, byte functionNo){
  2.  
  3. DWORD64 qwFuncAddr = PCI_CONFIG_START;
  4. qwFuncAddr = qwFuncAddr | (busNo << 20);
  5. qwFuncAddr = qwFuncAddr | (deviceNo << 15);
  6. qwFuncAddr = qwFuncAddr | (functionNo << 12);
  7.  
  8. return (PSATA_PCI_CFG)qwFuncAddr;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement