/* @r{multiboot.h - the header for Multiboot} */
/* @r{Copyright (C) 1999, 2001 Free Software Foundation, Inc.
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.} */
/* @r{Macros.} */
/* @r{The magic number for the Multiboot header.} */
/* @r{The flags for the Multiboot header.} */
#else
/* @r{The magic number passed by a Multiboot-compliant boot loader.} */
/* @r{The size of our stack (16KB).} */
/* @r{C symbol format. HAVE_ASM_USCORE is defined by configure.} */
#else
/* @r{Do not include here in boot.S.} */
/* @r{Types.} */
/* @r{The Multiboot header.} */
@{
unsigned long header_addr;
unsigned long load_end_addr;
unsigned long bss_end_addr;
unsigned long entry_addr;
/* @r{The symbol table for a.out.} */
@{
/* @r{The section header table for ELF.} */
@{
/* @r{The Multiboot information.} */
@{
unsigned long boot_device;
unsigned long mods_count;
@{
@} u;
unsigned long mmap_length;
@} multiboot_info_t;
/* @r{The module structure.} */
@{
@} module_t;
/* @r{The memory map. Be careful that the offset 0 is base_addr_low
but no size.} */
@{
unsigned long base_addr_low;
unsigned long base_addr_high;
unsigned long length_low;
unsigned long length_high;
@} memory_map_t;
#endif /* @r{! ASM} */