Skip to content
On this page

OP_16 ​

INFO

Opcode number: 96
Byte representation: 0x60
Other names: OP_PUSHNUM_16
Short Description: Push the number 16 onto the stack.

The OP_16 opcode will push 0x10 onto the stack. This opcode uses the minimally encoded integers format.

Examples ​

Example 1 ​

shell
# ASM script
OP_16 OP_16

# Raw script
6060

# Final stack
16
16

Example 2 ​

shell
# ASM script
OP_16 OP_16 OP_ADD

# Raw script
606093

# Final stack
32