feat(arc): add optional arg for filename in gscobj header (#153)

This commit is contained in:
INeedGames
2023-10-02 15:42:14 -06:00
committed by GitHub
parent 898e575978
commit 834e4023f5
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ class assembler
public:
assembler(context const* ctx);
auto assemble(assembly const& data) -> buffer;
auto assemble(assembly const& data, std::string const& name = {}) -> buffer;
private:
auto assemble_function(function& func) -> void;