mirror of
https://github.com/rkujawa/rk65c02.git
synced 2026-03-11 03:16:11 +00:00
- interrupts: IRQ vector at $FFFE, vector device at $FFFC, idle_wait + assert_irq - hello_serial: custom bus device at $DE00, guest writes host prints - stepper: rk65c02_step(1) loop with regs and disassembly - jit_bench: min3.rom interpreter vs JIT wall time - breakpoints: debug_breakpoint_add at min3 entry, inspect then continue - README: document new examples, run from examples/ or make run-<name> - Makefile: EXAMPLES and run-* targets for all five Made-with: Cursor
9 lines
125 B
ArmAsm
9 lines
125 B
ArmAsm
; Small program for stepper example: a few instructions then STP.
|
|
.org 0xC000
|
|
|
|
lda #1
|
|
sta 0x0200
|
|
lda #2
|
|
sta 0x0201
|
|
stp
|