ZXFoundation™ 26h2
Loading...
Searching...
No Matches
core.cxxm
1/// SPDX-License-Identifier: Apache-2.0
2/// @file zxfoundation/init/bootstrap.cxxm
3/// @brief sys/bootstrapd — first schedulable kernel domain.
4
5export module zxfoundation.init.bootstrap.core;
6import arch.s390x.init.zxfl.protocol;
7
8export {
9
10namespace zxfoundation::init::bootstrap {
11
12 /// @brief Entry function for the sys/bootstrap domain.
13 /// @param arg Pointer to the boot @c protocol descriptor
14 auto bootstrap_entry(void* arg) noexcept -> void;
15
16} // namespace zxfoundation::init::bootstrap
17
18} // end export