1
0
mirror of https://github.com/raphnet/4nes4snes synced 2024-11-11 19:45:02 -05:00
4nes4snes/leds.h
Raphaël Assénat 6c88641e07 Initial revision
2007-03-25 02:59:30 +00:00

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