- Timestamp:
- Mar 28, 2012 4:21:57 PM (13 years ago)
- Location:
- trunk/src/VBox/Devices/PC/BIOS-new
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS-new/pcibio32.asm
r38699 r40694 134 134 pci_pro_nextdev: 135 135 inc ebx 136 cmp ebx, 10000h136 cmp ebx, MAX_BUSDEVFN 137 137 jne pci_pro_devloop 138 138 … … 160 160 pci_pro_nextdev2: 161 161 inc ebx 162 cmp ebx, 10000h162 cmp ebx, MAX_BUSDEVFN 163 163 jne pci_pro_devloop2 164 164 -
trunk/src/VBox/Devices/PC/BIOS-new/pcibios.inc
r39589 r40694 152 152 pci_real_nextdev: 153 153 inc ebx 154 cmp ebx, 10000h154 cmp ebx, MAX_BUSDEVFN 155 155 jne pci_real_devloop 156 156 … … 178 178 pci_real_nextdev2: 179 179 inc ebx 180 cmp ebx, 10000h180 cmp ebx, MAX_BUSDEVFN 181 181 jne pci_real_devloop2 182 182 -
trunk/src/VBox/Devices/PC/BIOS-new/pcicfg.inc
r38699 r40694 8 8 PCI_FIXED_HOST_BRIDGE_2 equ 244e8086h ;; ICH9 PCI bridge 9 9 10 MAX_BUSDEVFN equ 10000h ; Max bus/dev/fn to search
Note:
See TracChangeset
for help on using the changeset viewer.