Code:
$regfile="m16def.dat"
$crystal=7372800 'musste für dich noch ändern

config int0 = falling
config int1 = falling

enable int0
enable int1

enable interrupts

on int0 int0_isr
on int1 int1_isr

do
   '...
loop

int0_isr: 'isr=InterruptServiceRoutine
'tue dies bei INT0 auslösung
return

int1_isr: 'isr=InterruptServiceRoutine
'tue dies bei INT1 auslösung
return
das sollte es gewesen sein ^^