blob: fbfa9f7b16baa40d254559019016586da680e4e3 [file] [log] [blame]
Kevin O'Connor1f2c3072009-05-06 23:35:59 -04001// Rom layout and bios assembler to C interface.
2//
3// Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net>
4//
5// This file may be distributed under the terms of the GNU LGPLv3 license.
6
7
8/****************************************************************
9 * Include of 16bit C code
10 ****************************************************************/
11
12 .code16gcc
Kevin O'Connor3dba4c22011-01-29 11:26:54 -050013#include "vgaccode.16.s"
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040014
15#include "entryfuncs.S" // ENTRY_*
16
17
18/****************************************************************
19 * Rom Header
20 ****************************************************************/
21
22 .section .rom.header
23 .global _rom_header, _rom_header_size, _rom_header_checksum
24_rom_header:
25 .word 0xaa55
26_rom_header_size:
27 .byte 0
28_rom_header_entry:
29 jmp _optionrom_entry
30_rom_header_checksum:
Kevin O'Connorc9d3c2d2010-01-01 12:53:32 -050031 .byte 0
32_rom_header_other:
33 .space 21
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040034
35
36/****************************************************************
37 * Entry points
38 ****************************************************************/
39
40 DECLFUNC _optionrom_entry
41_optionrom_entry:
42 ENTRY_ARG vga_post
43 lretw
44
Kevin O'Connor9f193b92009-05-16 23:31:27 -040045 DECLFUNC entry_10
46entry_10:
47 ENTRY_ARG handle_10
48 iretw