1
0
mirror of https://github.com/raphnet/4nes4snes synced 2024-12-22 15:08:51 -05:00
4nes4snes/leds.h

19 lines
304 B
C
Raw Normal View History

2007-03-24 22:59:30 -04:00
#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