diff options
author | David Woodhouse <dwmw2@infradead.org> | 2014-06-03 17:28:58 +0100 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-06-05 10:58:29 -0400 |
commit | 67fd42cf16e6b16793eef2413b03e17f387611e2 (patch) | |
tree | 753a391456afdcf8dc616cfea77989d75c52716b /vgasrc | |
parent | 5b22d9397258716bc2dc3b1b5a3f5cef297c6039 (diff) | |
download | seabios-67fd42cf16e6b16793eef2413b03e17f387611e2.tar.gz |
vgabios: Use .code16 not .code16gcc
There's no need to use .code16gcc where we are writing assembler code
explicitly. It only affects word-size-ambiguous instructions, and we
should just be explicit. And we are.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'vgasrc')
-rw-r--r-- | vgasrc/vgaentry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vgasrc/vgaentry.S b/vgasrc/vgaentry.S index 11197f1a..3c2c8852 100644 --- a/vgasrc/vgaentry.S +++ b/vgasrc/vgaentry.S @@ -15,7 +15,7 @@ ****************************************************************/ .section .rom.header - .code16gcc + .code16 .global _rom_header, _rom_header_size, _rom_header_checksum _rom_header: .word 0xaa55 |