mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
57 lines
1.1 KiB
C
57 lines
1.1 KiB
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include <macos/lowmem.h>
|
|
#include <macos/devices.h>
|
|
#include <macos/video.h>
|
|
|
|
#include "misc.h"
|
|
|
|
void turn_off_interrupts()
|
|
{
|
|
int i;
|
|
short count;
|
|
DCtlHandle *currentHandle;
|
|
DCtlPtr currentPtr;
|
|
DriverHeader *driverPtr, **driverHandle;
|
|
short refnum;
|
|
volatile OSErr err; /* because -O2 remove call to PBControlSync() otherwise... */
|
|
VDParamBlock pb;
|
|
VDFlagRec flag;
|
|
|
|
count = LMGetUnitTableEntryCount();
|
|
currentHandle = (DCtlEntry ***) LMGetUTableBase();
|
|
for (i = 0; i < count; i++)
|
|
{
|
|
if (!currentHandle[i])
|
|
continue;
|
|
currentPtr = *(currentHandle[i]);
|
|
if (currentPtr->dCtlFlags & dRAMBasedMask)
|
|
{
|
|
driverHandle = (void*)(currentPtr->dCtlDriver);
|
|
if (!driverHandle)
|
|
continue;
|
|
driverPtr = *driverHandle;
|
|
}
|
|
else
|
|
driverPtr = (void*)(currentPtr->dCtlDriver);
|
|
|
|
err = OpenDriver(driverPtr->drvrName, &refnum);
|
|
if (err != noErr)
|
|
continue;
|
|
pb.ioRefNum = refnum;
|
|
pb.csCode = 7; /* SetInterrupt */
|
|
flag.flag = 1;
|
|
pb.csParam = &flag;
|
|
|
|
err = PBControlSync((ParmBlkPtr) &pb);
|
|
}
|
|
}
|