Changeset 13190 in vbox for trunk/src/VBox/Devices/PC/BIOS/rombios.c
- Timestamp:
- Oct 11, 2008 12:36:36 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r13158 r13190 9770 9770 shl ecx, #16 9771 9771 mov cx, dx 9772 xor bx,bx9772 xor ebx, ebx 9773 9773 mov di, #0x00 9774 9774 pci_pro_devloop: … … 9782 9782 dec si 9783 9783 pci_pro_nextdev: 9784 inc bx9785 cmp bx, #0x01009784 inc ebx 9785 cmp ebx, #0x10000 9786 9786 jne pci_pro_devloop 9787 9787 mov ah, #0x86 … … 9790 9790 cmp al, #0x03 9791 9791 jne pci_pro_f08 9792 xor bx,bx9792 xor ebx, ebx 9793 9793 mov di, #0x08 9794 9794 pci_pro_devloop2: … … 9803 9803 dec si 9804 9804 pci_pro_nextdev2: 9805 inc bx9806 cmp bx, #0x01009805 inc ebx 9806 cmp ebx, #0x10000 9807 9807 jne pci_pro_devloop2 9808 9808 mov ah, #0x86 … … 9954 9954 shl ecx, #16 9955 9955 mov cx, dx 9956 xor bx,bx9956 xor ebx, ebx 9957 9957 mov di, #0x00 9958 9958 pci_real_devloop: … … 9966 9966 dec si 9967 9967 pci_real_nextdev: 9968 inc bx9969 cmp bx, #0x01009968 inc ebx 9969 cmp ebx, #0x10000 9970 9970 jne pci_real_devloop 9971 9971 mov dx, cx … … 9976 9976 cmp al, #0x03 9977 9977 jne pci_real_f08 9978 xor bx,bx9978 xor ebx, ebx 9979 9979 mov di, #0x08 9980 9980 pci_real_devloop2: … … 9989 9989 dec si 9990 9990 pci_real_nextdev2: 9991 inc bx9992 cmp bx, #0x01009991 inc ebx 9992 cmp ebx, #0x10000 9993 9993 jne pci_real_devloop2 9994 9994 mov dx, cx
Note:
See TracChangeset
for help on using the changeset viewer.