11 lines
196 B
C
11 lines
196 B
C
#ifndef _PCI_H_
|
|
#define _PCI_H_
|
|
|
|
#define PCI_MEMORY_OFFSET 0x80000000
|
|
#define PCI_MEMORY_SIZE 0x40000000
|
|
#define PCI_IO_OFFSET 0xB0000000
|
|
#define PCI_IO_SIZE 0x10000000
|
|
|
|
|
|
#endif /* _PCI_H_ */
|