feat(jup): jup template (#192)
This commit is contained in:
@ -64,6 +64,7 @@ enum class engine : u8
|
||||
t7,
|
||||
t8,
|
||||
t9,
|
||||
jup
|
||||
};
|
||||
|
||||
struct props
|
||||
|
24
include/xsk/arc/engine/jup.hpp
Normal file
24
include/xsk/arc/engine/jup.hpp
Normal file
@ -0,0 +1,24 @@
|
||||
// Copyright 2024 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::jup
|
||||
{
|
||||
|
||||
constexpr usize code_count = 0;
|
||||
constexpr usize hash_count = 0;
|
||||
constexpr u64 header_magic = 0x38000A0D43534780;
|
||||
|
||||
class context : public arc::context
|
||||
{
|
||||
public:
|
||||
context();
|
||||
};
|
||||
|
||||
} // namespace xsk::arc::jup
|
Reference in New Issue
Block a user