- Factoring of auto.c
- Implementation of fallback/normal support for the amd solo board - Minor bugfix in romcc git-svn-id: svn://svn.coreboot.org/coreboot/trunk@867 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
16
util/romcc/tests/simple_test31.c
Normal file
16
util/romcc/tests/simple_test31.c
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
static unsigned pci_locate_device(unsigned addr)
|
||||
{
|
||||
addr &= ~0xff;
|
||||
for(; addr <= 0x00ffff00; addr += 0x00000100) {
|
||||
__builtin_outl(addr, 0x12);
|
||||
}
|
||||
return addr;
|
||||
}
|
||||
|
||||
static void main(void)
|
||||
{
|
||||
unsigned long addr;
|
||||
addr = pci_locate_device(0);
|
||||
__builtin_outl(addr, 0x12);
|
||||
}
|
Reference in New Issue
Block a user