home *** CD-ROM | disk | FTP | other *** search
- ; @BeginIO is still missing in amigasr.lib
-
- XDEF @BeginIO
-
- ; C Interface: void BeginIO(struct IORequest *ior);
- ; A0
-
- @BeginIO:
- move.l a6,-(sp) ; Save A6
-
- move.l 20(a0),a6 ; ior->io_Device in A6
- move.l a0,a1 ; ior in A1
- jsr -30(a6) ; Call BeginIO directly
-
- move.l (sp)+,a6 ; Restore A6
- rts ; The end...
-
- END
-