From 67fd42cf16e6b16793eef2413b03e17f387611e2 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Tue, 3 Jun 2014 17:28:58 +0100 Subject: 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 --- vgasrc/vgaentry.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vgasrc') diff --git a/vgasrc/vgaentry.S b/vgasrc/vgaentry.S index 11197f1..3c2c885 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 -- cgit v1.1