2023-03-02 10:41:32 -05:00
|
|
|
// 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::t8
|
|
|
|
{
|
|
|
|
|
|
|
|
constexpr usize code_count = 0;
|
|
|
|
constexpr usize hash_count = 0;
|
2023-05-13 13:24:57 -04:00
|
|
|
constexpr u64 header_magic = 0x36000A0D43534780;
|
2023-03-02 10:41:32 -05:00
|
|
|
|
|
|
|
class context : public arc::context
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
context();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace xsk::arc::t8
|