mirror of
https://github.com/raphnet/4nes4snes
synced 2024-12-22 15:08:51 -05:00
19 lines
304 B
C
19 lines
304 B
C
|
#ifndef _leds_h__
|
||
|
#define _leds_h__
|
||
|
|
||
|
#ifndef PORTD
|
||
|
#include <avr/io.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#define LED_OFF()
|
||
|
#define LED_ON();
|
||
|
#define LED_TOGGLE();
|
||
|
|
||
|
//#define LED_OFF() do { PORTD |= 0x20; } while(0)
|
||
|
//#define LED_ON() do { PORTD &= ~0x20; } while(0)
|
||
|
//#define LED_TOGGLE() do { PORTD ^= 0x20; } while(0)
|
||
|
|
||
|
#endif
|
||
|
|