Skip to content

Commit

Permalink
Documentation additions.
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkie authored and The XOmB Overlord committed Feb 27, 2010
1 parent 80f7b29 commit dc5bf87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/arch/x86_64/architecture/pci.d
Expand Up @@ -48,7 +48,7 @@ static:
return Cpu.ioIn!(ubyte, "0xcfc")();
}

// Description: Will write to PCI.
// Description: Will write a uint to PCI.
synchronized
void write32(uint address, uint value) {
_setAddress(address);
Expand All @@ -60,7 +60,7 @@ static:
Cpu.ioOut!(uint)(0xcfc + offset, value);
}

// Description: Will write to PCI.
// Description: Will write a ushort to PCI.
synchronized
void write16(uint address, ushort value) {
_setAddress(address);
Expand All @@ -72,7 +72,7 @@ static:
Cpu.ioOut!(ushort)(0xcfc + offset, value);
}

// Description: Will write to PCI.
// Description: Will write a ubyte to PCI.
synchronized
void write8(uint address, ubyte value) {
_setAddress(address);
Expand Down

0 comments on commit dc5bf87

Please sign in to comment.