Python-Cpu-Emulator/test.asm

11 lines
118 B
NASM
Raw Normal View History

2024-12-24 05:17:07 +00:00
main:
2025-03-28 15:10:24 +00:00
ldw a, 5
ldw b, 10
add a, b
jsr foo
ret
foo:
ldw a, 3
ldw b, 7
add a, b
retZ