/* ------------------------------------------- Copyright SoftwareLabs ------------------------------------------- */ #include namespace NewOS { /// @brief Doea a system wide bug check. /// @param void no params. /// @return if error-free: true, otherwise false. Boolean ke_bug_check(void) noexcept { return true; } } // namespace NewOS