Minor fixes to comments.
[AROS.git] / rom / kernel / kernel_globals.c
blobdfca5f14093b5bf11f76444d4a4901039524d062
1 /*
2 * Copyright (C) 2011, The AROS Development Team. All rights reserved.
3 * Author: Jason S. McMullan <jason.mcmullan@gmail.com>
5 * Licensed under the AROS PUBLIC LICENSE (APL) Version 1.1
7 * This file contains the global variables that are referenced
8 * by most implementations of kernel.resource
10 * Of note, it is overriden by the m68k architecture, which does
11 * not use .bss nor .data, for performance reasons related to
12 * slow MEMF_CHIP RAM.
14 #include <aros/symbolsets.h>
17 * Some globals we can't live without.
18 * IMPORTANT: BootMsg should survive warm restarts, this is why it's placed in .data.
20 struct KernelBase *KernelBase;
21 __attribute__((section(".data"))) struct TagItem *BootMsg;