Changes
MOS 6502
,/* Memory Access */
Instructions PHA and PHP push the accumulator and processor status onto the stack, while PLA and PLP pull them back. Subroutine calls with JSR store the return address on the stack, and RTS retrieves it to continue execution. Similarly, interrupts (BRK) push the program counter and status, while RTI restores them.
All I/O operations are memory mapped. There are no specific I/O instructions.
=== BRK / IRQ / NMI / RESET ===