Rev 534 | Rev 1702 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 534 | Rev 610 | ||
|---|---|---|---|
| Line 106... | Line 106... | ||
| 106 | 106 | ||
| 107 | if (m->arch.imp_num & 0x80) { |
107 | if (m->arch.imp_num & 0x80) { |
| 108 | /* Count records */ |
108 | /* Count records */ |
| 109 | for (i=0;imp_data80[i].vendor;i++) |
109 | for (i=0;imp_data80[i].vendor;i++) |
| 110 | ; |
110 | ; |
| 111 | if (m->arch.imp_num & 0x7f >= i) { |
111 | if ((m->arch.imp_num & 0x7f) >= i) { |
| 112 | printf("imp=%d\n",m->arch.imp_num); |
112 | printf("imp=%d\n",m->arch.imp_num); |
| 113 | return; |
113 | return; |
| 114 | } |
114 | } |
| 115 | data = &imp_data80[m->arch.imp_num & 0x7f]; |
115 | data = &imp_data80[m->arch.imp_num & 0x7f]; |
| 116 | } else { |
116 | } else { |