You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BytecodeCompiler program = BytecodeCompiler.newProgram()
.assemble(
"""
PUSH1 28 ;
""");
is interpreted as PUSH1 0x28 instead of PUSH1 28. The purpose of the method is to write programs for testing using mnemonic instructions. However, it seems it accepts only hex inputs.
The text was updated successfully, but these errors were encountered:
powerslider
changed the title
Bug in assemble method in BytecodeCompiler class
Assemble method in BytecodeCompiler class should accept integer arguments for all opcodes
May 14, 2024
is interpreted as
PUSH1 0x28
instead ofPUSH1 28
. The purpose of the method is to write programs for testing using mnemonic instructions. However, it seems it accepts only hex inputs.The text was updated successfully, but these errors were encountered: