Changeset 4300 for libcaca/trunk/kernel/multiboot.h
- Timestamp:
- Jan 24, 2010, 10:58:17 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/kernel/multiboot.h
r568 r4300 1 1 /* multiboot.h - the header for Multiboot */ 2 2 /* Copyright (C) 1999 Free Software Foundation, Inc. 3 3 4 4 This program is free software; you can redistribute it and/or modify 5 5 it under the terms of the GNU General Public License as published by 6 6 the Free Software Foundation; either version 2 of the License, or 7 7 (at your option) any later version. 8 8 9 9 This program is distributed in the hope that it will be useful, 10 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 12 GNU General Public License for more details. 13 13 14 14 You should have received a copy of the GNU General Public License 15 15 along with this program; if not, write to the Free Software … … 19 19 20 20 /* The magic number for the Multiboot header. */ 21 #define MULTIBOOT_HEADER_MAGIC 21 #define MULTIBOOT_HEADER_MAGIC 0x1BADB002 22 22 23 23 /* The flags for the Multiboot header. */ 24 #define MULTIBOOT_HEADER_FLAGS 24 #define MULTIBOOT_HEADER_FLAGS 0x00010003 25 25 26 26 /* The magic number passed by a Multiboot-compliant boot loader. */ 27 #define MULTIBOOT_BOOTLOADER_MAGIC 27 #define MULTIBOOT_BOOTLOADER_MAGIC 0x2BADB002 28 28 29 29 /* The size of our stack (16KB). */ 30 #define STACK_SIZE 30 #define STACK_SIZE 0x4000 31 31 32 32 /* C symbol format. HAVE_ASM_USCORE is defined by configure. */ 33 33 #ifdef HAVE_ASM_USCORE 34 # define EXT_C(sym) 34 # define EXT_C(sym) _ ## sym 35 35 #else 36 # define EXT_C(sym) 36 # define EXT_C(sym) sym 37 37 #endif 38 38
Note: See TracChangeset
for help on using the changeset viewer.