Stack Visualization
{% for frame in stack.frames %}
{% if frame.function %}
{{ frame.function }}
{% endif %} {% for cell in frame.cells %}
{% if showAddress %}
{{ '0x{:08X}'.format(cell.address) if cell.address else '0x????' }}
{% endif %}
{{ cell.label | default('???') }}
{{ cell.words | join(', ') }}
{% if cell.note %}
{{ cell.note }}
{% endif %}
{% endfor %}
{% endfor %}