; Testing Sux assembly, and the machine language monitor. ; ; Writen by mr b0nk 500 .org $8000 cps ; Clear the processor status register. lda.w #$1000 ; Load 0x1000 into the accumulator. rol #$1 ; Then rotate the accumulator left by 1 bit. jmp $8006 ; And then loop. .org $FFC0 ; Reset vector. .qword $8000 done