24 lines
419 B
C++
24 lines
419 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.
|
|
|
|
#include "stdinc.hpp"
|
|
#include "t6.hpp"
|
|
|
|
namespace xsk::arc::t6
|
|
{
|
|
|
|
void context::init(build mode, read_cb_type callback)
|
|
{
|
|
compiler_.mode(mode);
|
|
resolver::init(callback);
|
|
}
|
|
|
|
void context::cleanup()
|
|
{
|
|
resolver::cleanup();
|
|
}
|
|
|
|
} // namespace xsk::arc::t6
|