1 /* 2 * (c) 2015 Adam Lackorzynski <adam@l4re.org> 3 * 4 * This file is part of TUD:OS and distributed under the terms of the 5 * GNU General Public License 2. 6 * Please see the COPYING-GPL-2 file for details. 7 */ 8 #ifndef MEM_LAYOUT_H__ 9 #define MEM_LAYOUT_H__ 10 11 namespace Mem_layout 12 { 13 enum 14 { 15 Loader_vma_start = 0x70200000 16 }; 17 } 18 19 #endif 20