2025-02-20 06:23:40 -05:00
|
|
|
// Copyright 2025 xensik. All rights reserved.
|
2024-05-15 01:04:12 -04:00
|
|
|
//
|
|
|
|
// 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::jup
|
|
|
|
{
|
|
|
|
|
|
|
|
constexpr usize code_count = 0;
|
|
|
|
constexpr usize hash_count = 0;
|
|
|
|
constexpr u64 header_magic = 0x38000A0D43534780;
|
|
|
|
|
2025-02-20 06:23:40 -05:00
|
|
|
struct context : public arc::context
|
2024-05-15 01:04:12 -04:00
|
|
|
{
|
|
|
|
public:
|
2025-02-20 06:23:40 -05:00
|
|
|
context(arc::instance inst);
|
2024-05-15 01:04:12 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace xsk::arc::jup
|