diff options
| author | Aleksa Vučković <aleksav013@gmail.com> | 2022-06-06 00:11:11 +0200 |
|---|---|---|
| committer | Aleksa Vučković <aleksav013@gmail.com> | 2022-06-08 13:59:25 +0200 |
| commit | 58240b0509d11b09ce2994b88308650e7cfb93bd (patch) | |
| tree | a21fb3bac12259c412cc2c6becc69376fbb4a9a4 /src/as/cpuid.s | |
| parent | 4fc9a5b06a0b50db6fc12d4ab7d937766e9ec8a7 (diff) | |
game and keyboard small fixv1.0.2
Diffstat (limited to 'src/as/cpuid.s')
| -rw-r--r-- | src/as/cpuid.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/as/cpuid.s b/src/as/cpuid.s index 701fa0d..043b2a4 100644 --- a/src/as/cpuid.s +++ b/src/as/cpuid.s @@ -3,9 +3,9 @@ cpuid_vendor: pushl %ebp mov %esp, %ebp - pushl %ebx pushl %edi pushl %esi + pushl %ebx mov $0x0, %eax cpuid @@ -16,8 +16,8 @@ cpuid_vendor: movl %edx, 4(%eax) movl %ecx, 8(%eax) + popl %ebx popl %esi popl %edi - popl %ebx popl %ebp ret |
