Skip to content

Commit

Permalink
Add MYCODE insn
Browse files Browse the repository at this point in the history
  • Loading branch information
mskvortsov committed Jan 24, 2023
1 parent 0e15aa3 commit d09bc34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/disasm/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,7 @@ impl Handlers {
.set(0x27, Loader::balance)
.set(0x28, Loader::my_addr)
.set(0x29, Loader::config_root)
.set(0x2a, Loader::my_code)
.set(0x30, Loader::config_dict)
.set(0x32, Loader::config_ref_param)
.set(0x33, Loader::config_opt_param)
Expand Down
1 change: 1 addition & 0 deletions src/disasm/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1646,6 +1646,7 @@ impl Loader {
create_handler_2!(balance, 0xf827, "BALANCE");
create_handler_2!(my_addr, 0xf828, "MYADDR");
create_handler_2!(config_root, 0xf829, "CONFIGROOT");
create_handler_2!(my_code, 0xf82a, "MYCODE");
create_handler_2!(config_dict, 0xf830, "CONFIGDICT");
create_handler_2!(config_ref_param, 0xf832, "CONFIGPARAM");
create_handler_2!(config_opt_param, 0xf833, "CONFIGOPTPARAM");
Expand Down

0 comments on commit d09bc34

Please sign in to comment.