// 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

namespace xsk::arc
{

class compiler
{
public:
    using ptr = std::unique_ptr<compiler>;

    virtual ~compiler() = default;
    virtual auto output() -> assembly::ptr = 0;
    virtual auto output_raw() -> std::vector<std::uint8_t> = 0;
    virtual void compile(const std::string& file, std::vector<std::uint8_t>& data) = 0;
};

} // namespace xsk::arc