diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-03-05 17:10:13 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-03-06 07:18:38 -0500 |
commit | 900ded0968bb431d7987cc6f103ce2d49a760db9 (patch) | |
tree | 3df7c23852197c2e972f28e9a47da1e3e7c5a105 /vgasrc | |
parent | c04090d7deb9b8e07f36ac0df3c94cde930676d6 (diff) | |
download | seabios-900ded0968bb431d7987cc6f103ce2d49a760db9.tar.gz |
vgabios: Fixup clext far return instruction.
Fix typo causing incorrect far return instruction - use explicit ATT
syntax - "lretw".
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc')
-rw-r--r-- | vgasrc/clext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vgasrc/clext.c b/vgasrc/clext.c index e5dce356..fc5459ac 100644 --- a/vgasrc/clext.c +++ b/vgasrc/clext.c @@ -526,7 +526,7 @@ ASM16( "a0h_callback:" "cli\n" "hlt\n" - "retf"); + "lretw"); static void clext_1012a0(struct bregs *regs) |