mirror of
https://github.com/pConst/basic_verilog.git
synced 2025-01-28 07:02:55 +08:00
17 lines
145 B
Plaintext
17 lines
145 B
Plaintext
; pb3_int.psm
|
|
|
|
start:
|
|
output s2, 97
|
|
interrupt enable
|
|
load s2, 0
|
|
call foo
|
|
|
|
foo:
|
|
jump foo
|
|
|
|
isr:
|
|
returni disable
|
|
|
|
irq: address $3ff
|
|
jump isr
|