hex.push_byteΒΆ

Effectively:  stack[++sp] = byte[:2]
Pushes the given byte to the next cell in the stack. Increments sp.
byte is a hex[:2].

SignatureΒΆ

def push_byte byte < hex.pointers.sp { ... }

Defined in hex/pointers/stack.fj β€” lines 69–72 (view on GitHub).

ComplexityΒΆ

  • Time: w(0.75@+ 5) + 26@+ 51

  • Space: w(1.13@+32) + 22@+255

See the complexity glossary for what @, w, dw, dbit, n mean.

SourceΒΆ

Depends onΒΆ


← Previous: hex.push_hex Next: hex.push β†’