diff options
| author | Michael Brown | 2006-05-02 23:09:29 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-05-02 23:09:29 +0200 |
| commit | cc23057b596b64bf4c6845157766eecb7cd19657 (patch) | |
| tree | 4c88defe9b9ad4341072665aecda571cfe32490a | |
| parent | Create two easy-to-use entry points in libprefix: install and (diff) | |
| download | ipxe-cc23057b596b64bf4c6845157766eecb7cd19657.tar.gz ipxe-cc23057b596b64bf4c6845157766eecb7cd19657.tar.xz ipxe-cc23057b596b64bf4c6845157766eecb7cd19657.zip | |
Typo
| -rw-r--r-- | src/arch/i386/prefix/libprefix.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/i386/prefix/libprefix.S b/src/arch/i386/prefix/libprefix.S index e00388d63..25d51bfa5 100644 --- a/src/arch/i386/prefix/libprefix.S +++ b/src/arch/i386/prefix/libprefix.S @@ -43,7 +43,7 @@ install_block: /* Preserve registers */ pushw %ds - pushw %eax + pushl %eax /* Starting segment => %ds */ movw %cs, %ax @@ -67,7 +67,7 @@ install_block: rep addr32 stosb /* Restore registers */ - popw %eax + popl %eax popw %ds ret .size install_block, . - install_block |
