🔥 6502 Profilers Gallery

Interactive profiling tools for Commodore 64 assembly code

algorithms SIMPLE

Multiple algorithms: binary search, string reversal, bit counting, multiplication by 10, min/max finding, XOR encryption.
Time: 1.68ms
Functions: 11
Max Depth: 2

deep-nest COMPLEX

Deeply nested complex example with 5+ levels of subroutine nesting, heavy work at different stack depths, nested loops, multiple branching paths.
Time: 28.06ms
Functions: 53
Max Depth: 8

demo-complex

Bubble sort, data transformation, pattern generation, checksum calculation. Demonstrates typical sorting algorithms and data manipulation patterns.
Time: 3.21ms
Functions: 8
Max Depth: 2

fib-simple BASIC

Simple Fibonacci calculator generating first 10 numbers of the sequence. Linear execution with single loop - good baseline for comparison.
Time: 0.35ms
Functions: 1
Max Depth: 1