.syntax unified
.include "regs.asm"

.global vektor
.global isr

//.org 0xe0
vektor:
//.word isr

.org 0x08004000
isr:
	bx lr

.end
