	13 Mfpint

	void Mfpint( int erno, void (*vector)() );

Damit kann eine Interruptroutine im MFP initialisiert werden.
In 'erno' mu dabei die Nummer des MFP-Interrupts stehen:

	0	I/O-Port Bit 0 Busy par. Schnittstelle
	1	RS-232 DCD
	2	RS-232 CTS
	3	Blitter
	4	Timer D, RS232-232 Baud-Generator
	5	Timer C, 200-Hz System-Uhr
	6	Tastatur und MIDI
	7	FDC und DMA
	8	Timer B Zeilenrcklauf
	9	RS-232 Sendefehler
	10	RS-232 Sendepuffer leer
	11	RS-232 Empfangspuffer voll
	12	RS-232 Puffer voll
	13	Timer A
	14	RS-232 RI
	15	Monochrom-Monitor Detect

'vector' enthlt die Adresse der zugehrigen Interruptroutine.
Der alte Interruptvektor wird dabei berschrieben.

Beispiel:

	move.l	#busy,-(sp)	* Busy-Interruptroutine
	move.w	#0,-(sp)	* Vektor-Nummer 0
	move.w	#13,-(sp)	* Mfpint
	trap	#14
	addq.l	#8,sp
	...
busy:	...
