Rev 2082 | Rev 2316 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2082 | Rev 2314 | ||
|---|---|---|---|
| Line 105... | Line 105... | ||
| 105 | 105 | ||
| 106 | "movl %%eax, %0\n" |
106 | "movl %%eax, %0\n" |
| 107 | "movl %%ebx, %1\n" |
107 | "movl %%ebx, %1\n" |
| 108 | "movl %%ecx, %2\n" |
108 | "movl %%ecx, %2\n" |
| 109 | "movl %%edx, %3\n" |
109 | "movl %%edx, %3\n" |
| 110 | : "=m" (info->cpuid_eax), "=m" (info->cpuid_ebx), "=m" (info->cpuid_ecx), "=m" (info->cpuid_edx) |
110 | : "=a" (info->cpuid_eax), "=b" (info->cpuid_ebx), "=c" (info->cpuid_ecx), "=d" (info->cpuid_edx) |
| 111 | : "m" (cmd) |
111 | : "m" (cmd) |
| 112 | : "eax", "ebx", "ecx", "edx" |
- | |
| 113 | ); |
112 | ); |
| 114 | } |
113 | } |
| 115 | 114 | ||
| 116 | #endif |
115 | #endif |
| 117 | 116 | ||