;6502SDK sample file ; ;Let's test the stack: we'll push a value in the stack ;until we generate a stack overflow. org $c000 ldx #$00 loop: txa pha inx jmp loop