xref: /kvmtool/x86/bios/bios-rom.S (revision a68a52cd8ab76483b3592ddc0f7dbf40b4bd55ba)
1#include <kvm/assembly.h>
2
3	.org 0
4#ifdef CONFIG_X86_64
5	.code64
6#else
7	.code32
8#endif
9
10GLOBAL(bios_rom)
11	.incbin "x86/bios/bios.bin"
12END(bios_rom)
13
14/*
15 * Add this section to ensure final binary has a non-executable stack.
16 */
17.section .note.GNU-stack,"",@progbits
18