Renaming, zx packaging, remove oracle references
All checks were successful
Gajumaru Bytecode Tests / tests (push) Successful in -3m59s

This commit is contained in:
Craig Everett 2025-01-22 19:51:27 +09:00
parent c1e484cf20
commit 4a7c2e2a97
15 changed files with 27 additions and 6 deletions

View File

@ -15,7 +15,8 @@ console: local
clean: clean:
@$(REBAR) clean @$(REBAR) clean
rm -f $(GENERATED_SRC) rm -f $(GENERATED_SRC)
rm -f ebin/* rm -f ebin/*.beam
rm -rf _build
dialyzer: local dialyzer: local
@$(REBAR) as local dialyzer @$(REBAR) as local dialyzer

View File

@ -1,9 +1,11 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2017, Aeternity Anstalt %%% @copyright (C) 2017, Aeternity Anstalt
%%% @doc %%% @doc
%%% Encode and decode data and function calls according to %%% Encode and decode data and function calls according to
%%% Sophia-AEVM-ABI %%% Sophia-AEVM-ABI
%%% @end %%% @end
%%% Updated : 22 Jan 2025
%%% Created : 25 Jan 2018 %%% Created : 25 Jan 2018
%%% %%%
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------

View File

@ -1,4 +1,5 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2017, Aeternity Anstalt %%% @copyright (C) 2017, Aeternity Anstalt
%%% @doc Assembler for aevm machine code. %%% @doc Assembler for aevm machine code.
%%% %%%
@ -25,6 +26,7 @@
%%% 4. labels as descibed above. %%% 4. labels as descibed above.
%%% %%%
%%% @end %%% @end
%%% Updated : 22 Jan 2025
%%% Created : 21 Dec 2017 %%% Created : 21 Dec 2017
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------

View File

@ -1,5 +1,6 @@
%%% -*- erlang-indent-level:4; indent-tabs-mode: nil -*- %%% -*- erlang-indent-level:4; indent-tabs-mode: nil -*-
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2017, Aeternity Anstalt %%% @copyright (C) 2017, Aeternity Anstalt
%%% @doc Assembler lexer. %%% @doc Assembler lexer.
%%% %%%

View File

@ -1,9 +1,11 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2017, Aeternity Anstalt %%% @copyright (C) 2017, Aeternity Anstalt
%%% @doc %%% @doc
%%% Prettyprint aevm machine code %%% Prettyprint aevm machine code
%%% @end %%% @end
%%% Created : 2 Oct 2017 %%% Updated : 22 Jan 2025
%%% Created : 02 Oct 2017
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
-module(gmb_disassemble). -module(gmb_disassemble).

View File

@ -1,9 +1,11 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2019, Aeternity Anstalt %%% @copyright (C) 2019, Aeternity Anstalt
%%% @doc %%% @doc
%%% Encode and decode data and function calls according to %%% Encode and decode data and function calls according to
%%% Sophia-FATE-ABI %%% Sophia-FATE-ABI
%%% @end %%% @end
%%% Updated : 22 Jan 2025
%%% Created : 11 Jun 2019 %%% Created : 11 Jun 2019
%%% %%%
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------

View File

@ -1,4 +1,5 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2019, Aeternity Anstalt %%% @copyright (C) 2019, Aeternity Anstalt
%%% @doc Assembler for Fate machine code. %%% @doc Assembler for Fate machine code.
%%% @end %%% @end
@ -80,6 +81,7 @@
%%% Size: Digits %%% Size: Digits
%%% Tag: Digits %%% Tag: Digits
%%% %%%
%%% Updated : 22 Jan 2025
%%% Created : 21 Dec 2017 %%% Created : 21 Dec 2017
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------

View File

@ -1,6 +1,7 @@
%%% -*- erlang-indent-level:4; indent-tabs-mode: nil -*- %%% -*- erlang-indent-level:4; indent-tabs-mode: nil -*-
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2019, gmternity Anstalt %%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2019, Aeternity Anstalt
%%% @doc %%% @doc
%%% Handling FATE code. %%% Handling FATE code.
%%% @end %%% @end

View File

@ -1,4 +1,5 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2019, Aeternity Anstalt %%% @copyright (C) 2019, Aeternity Anstalt
%%% @doc %%% @doc
%%% ADT for fate byte code/fate code %%% ADT for fate byte code/fate code

View File

@ -1,4 +1,5 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2019, Aeternity Anstalt %%% @copyright (C) 2019, Aeternity Anstalt
%%% @doc %%% @doc
%%% Functions for manipulating FATE maps. In particular for mediating %%% Functions for manipulating FATE maps. In particular for mediating

View File

@ -1,8 +1,10 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2018, Aeternity Anstalt %%% @copyright (C) 2018, Aeternity Anstalt
%%% @doc %%% @doc
%%% Memory speifics that compiler and VM need to agree upon %%% Memory speifics that compiler and VM need to agree upon
%%% @end %%% @end
%%% Updated : 22 Jan 2025
%%% Created : 19 Dec 2018 %%% Created : 19 Dec 2018
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------

View File

@ -1,9 +1,11 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2017, Aeternity Anstalt %%% @copyright (C) 2017, Aeternity Anstalt
%%% @doc %%% @doc
%%% Opcodes %%% Opcodes
%%% @end %%% @end
%%% Created : 2 Oct 2017 %%% Updated : 22 Jan 2025
%%% Created : 02 Oct 2017
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
-module(gmb_opcodes). -module(gmb_opcodes).

View File

@ -1,9 +1,11 @@
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2025, QPQ AG
%%% @copyright (C) 2018, Aeternity Anstalt %%% @copyright (C) 2018, Aeternity Anstalt
%%% @doc %%% @doc
%%% Handle interaction with the gmternity chain %%% Handle interaction with the gmternity chain
%%% through calls to AEternity primitive operations at address 0. %%% through calls to AEternity primitive operations at address 0.
%%% @end %%% @end
%%% Updated : 22 Jan 2025
%%% Created : 18 Dec 2018 %%% Created : 18 Dec 2018
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------

View File

@ -1,5 +1,5 @@
{application, gmbytecode, {application, gmbytecode,
[{description, "Bytecode definitions, serialization and deserialization for gmternity."}, [{description, "Bytecode definitions, serialization and deserialization for the Gajumaru."},
{vsn, "3.4.0"}, {vsn, "3.4.0"},
{registered, []}, {registered, []},
{applications, {applications,

View File

@ -11,7 +11,7 @@
{license,skip}. {license,skip}.
{modules,[]}. {modules,[]}.
{name,"Gajumaru Bytecode"}. {name,"Gajumaru Bytecode"}.
{package_id,{"otpr","gmbytecode",{3,2,1}}}. {package_id,{"otpr","gmbytecode",{3,4,0}}}.
{prefix,none}. {prefix,none}.
{repo_url,"https://git.qpq.swiss/QPQ-AG/gmbytecode"}. {repo_url,"https://git.qpq.swiss/QPQ-AG/gmbytecode"}.
{tags,["gajumaru","blockchain","fate","bytecode","crypto","gm"]}. {tags,["gajumaru","blockchain","fate","bytecode","crypto","gm"]}.