Skip to content

Commit

Permalink
Added new Spin2 methods
Browse files Browse the repository at this point in the history
  • Loading branch information
maccasoft committed Nov 25, 2024
1 parent 9543386 commit 49ed806
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,10 +443,16 @@ public int getReturns() {
descriptors.put("SETREGS", new Descriptor(bc_hub_bytecode, bc_setregs, 3, 0));
descriptors.put("BYTEMOVE", new Descriptor(bc_hub_bytecode, bc_bytemove, 3, 0));
descriptors.put("BYTEFILL", new Descriptor(bc_hub_bytecode, bc_bytefill, 3, 0));
descriptors.put("BYTECOMP", new Descriptor(bc_hub_bytecode, bc_bytecomp, 3, 1));
descriptors.put("BYTESWAP", new Descriptor(bc_hub_bytecode, bc_byteswap, 3, 0));
descriptors.put("WORDMOVE", new Descriptor(bc_hub_bytecode, bc_wordmove, 3, 0));
descriptors.put("WORDFILL", new Descriptor(bc_hub_bytecode, bc_wordfill, 3, 0));
descriptors.put("WORDCOMP", new Descriptor(bc_hub_bytecode, bc_wordcomp, 3, 1));
descriptors.put("WORDSWAP", new Descriptor(bc_hub_bytecode, bc_wordswap, 3, 0));
descriptors.put("LONGMOVE", new Descriptor(bc_hub_bytecode, bc_longmove, 3, 0));
descriptors.put("LONGFILL", new Descriptor(bc_hub_bytecode, bc_longfill, 3, 0));
descriptors.put("LONGCOMP", new Descriptor(bc_hub_bytecode, bc_longcomp, 3, 1));
descriptors.put("LONGSWAP", new Descriptor(bc_hub_bytecode, bc_longswap, 3, 0));
descriptors.put("STRSIZE", new Descriptor(bc_hub_bytecode, bc_strsize, 1, 1));
descriptors.put("STRCOMP", new Descriptor(bc_hub_bytecode, bc_strcomp, 2, 1));
descriptors.put("STRCOPY", new Descriptor(bc_hub_bytecode, bc_strcopy, 3, 0));
Expand Down

0 comments on commit 49ed806

Please sign in to comment.