Chroma/inc/kernel/constants.hpp

15 lines
268 B
C++
Raw Permalink Normal View History

2022-02-17 02:03:05 +00:00
#pragma once
#include <stdint.h>
/************************
*** Team Kitty, 2021 ***
*** Chroma ***
***********************/
namespace Constants {
namespace Core {
const size_t STACK_SIZE = 65536;
const size_t MAX_CORES = 12;
}
}