18 lines
351 B
C++
18 lines
351 B
C++
|
// Copyright 2023 xensik. All rights reserved.
|
||
|
//
|
||
|
// Use of this source code is governed by a GNU GPLv3 license
|
||
|
// that can be found in the LICENSE file.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "xsk/stdinc.hpp"
|
||
|
#include "xsk/arc/context.hpp"
|
||
|
|
||
|
namespace xsk::arc::t6
|
||
|
{
|
||
|
|
||
|
constexpr usize code_count = 125;
|
||
|
constexpr usize hash_count = 3326;
|
||
|
|
||
|
} // namespace xsk::arc::t6
|