/* * ======================================================== * * hCore * Copyright Mahrouss Logic, all rights reserved. * * ======================================================== */ #include #include hCore::Array kSyscalls; extern "C" void rt_syscall_handle(hCore::HAL::StackFrame *stack) { for (hCore::SizeT index = 0UL; index < kMaxSyscalls; ++index) { (kSyscalls[index].Leak().Leak())(stack->ID, stack); } }