title: "EnableInterrupt" description: TRSE built-in method (from IDE help)
EnableInterrupt
Systems: Amiga, ATARI520ST
Parameters: i
This method enables a specific interrupt on the Amiga.
Example:
procedure Update();
begin
// .. do some IRQ update stuff
end;
begin
// Sets the IRQ routine to "Update"
vbirq(Update());
// Turns on VB IRQ interrupts
EnableInterrupt(VB_IRQ);
...