genode/repos/base-hw/src/core/stack_area_addr.cc

21 lines
501 B
C++

/*
* \brief Component-local stack area base address for HW core
* \author Stefan Kalkowski
* \date 2017-06-02
*/
/*
* Copyright (C) 2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
/* base-internal includes */
#include <base/internal/stack_area.h>
#include <hw/memory_map.h>
Genode::addr_t Genode::stack_area_virtual_base() {
return Hw::Mm::core_stack_area().base; }