Skip to content

OP_13

INFO

Opcode number: 93
Byte representation: 0x5d
Other names: OP_PUSHNUM_13
Short Description: Push the number 13 onto the stack.

The OP_13 opcode will push 0x0d onto the stack. This opcode uses the minimally encoded integers format.

Examples

Example 1

shell
# ASM script
OP_13 OP_13

# Raw script
5d5d

# Final stack
13
13

Example 2

shell
# ASM script
OP_13 OP_13 OP_ADD

# Raw script
5d5d93

# Final stack
26