RosettaCodeData/Task/Generic-swap/6502-Assembly/generic-swap-1.6502
2023-07-01 13:44:08 -04:00

11 lines
196 B
Text

;swap X with Y
pha ;push accumulator
txa
pha ;push x
tya
pha ;push y
pla
tax ;pop y into x
pla
tay ;pop x into y
pla ;pop accumulator