1 /* 2 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de> 3 * economic rights: Technische Universität Dresden (Germany) 4 * 5 * This file is part of TUD:OS and distributed under the terms of the 6 * GNU General Public License 2. 7 * Please see the COPYING-GPL-2 file for details. 8 */ 9 #ifndef MEM_LAYOUT_H__ 10 #define MEM_LAYOUT_H__ 11 12 namespace Mem_layout 13 { 14 enum 15 { 16 Loader_vma_start = 0xb0200000 17 }; 18 19 } 20 21 #endif 22 23