Hi,

wie der Name schon sagt habe ich ständig einen Doppel Interrupt an den
Interruptpins, d.h. wenn ich einen Taster drücke wird die ISR ausgeführt
danach direkt noch mal, ohne das der Taster dedrückt ist. Hier mal mein
Code:

Code:
$regfile = "m8def.dat"
$crystal = 14745000
$baud = 115200

Portd.3 = 1

Config Int1 = Falling
On Int1 Take Nosave                                         'Nosave
Enable Int1
Enable Interrupts

Do

Loop

Take:
   Print "h"
   Waitms 1000
Return

End