Next Previous Contents

3.16 SEI

Function

Insert a 6502 SEI instrunction into the code.

Header

6502.h

Declaration

void SEI (void);

Description

The function will insert a 6502 SEI instruction into the code, so interrupts are enabled. Enabling interrupts has no effects if they are already enabled (the default).

Limits

  • The function is actually a macro.

Availability

cc65

See also

BRK, CLI

Example

None.


Next Previous Contents