2002-03-28 15:09:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Alan Korr
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2004-11-02 21:42:39 +00:00
|
|
|
#include "config.h"
|
2002-05-13 12:29:34 +00:00
|
|
|
#include <stdbool.h>
|
2004-11-02 21:42:39 +00:00
|
|
|
#include "cpu.h"
|
2002-04-26 09:05:36 +00:00
|
|
|
#include "led.h"
|
2003-11-06 01:34:50 +00:00
|
|
|
#include "system.h"
|
2002-04-16 14:02:26 +00:00
|
|
|
|
2004-09-10 13:00:40 +00:00
|
|
|
#ifdef HAVE_LED
|
|
|
|
|
2004-06-22 10:52:39 +00:00
|
|
|
static bool xor;
|
|
|
|
static bool current;
|
|
|
|
|
2002-04-26 09:05:36 +00:00
|
|
|
void led(bool on)
|
2002-04-20 13:25:58 +00:00
|
|
|
{
|
2004-06-22 10:52:39 +00:00
|
|
|
current = on;
|
|
|
|
if ( on ^ xor )
|
2003-11-06 01:34:50 +00:00
|
|
|
{
|
2003-11-07 12:15:24 +00:00
|
|
|
or_b(0x40, &PBDRL);
|
2003-11-06 01:34:50 +00:00
|
|
|
}
|
2002-04-26 09:05:36 +00:00
|
|
|
else
|
2003-11-06 01:34:50 +00:00
|
|
|
{
|
2003-11-07 12:15:24 +00:00
|
|
|
and_b(~0x40, &PBDRL);
|
2003-11-06 01:34:50 +00:00
|
|
|
}
|
2002-04-20 13:25:58 +00:00
|
|
|
}
|
2004-06-22 10:52:39 +00:00
|
|
|
|
|
|
|
void invert_led(bool on)
|
|
|
|
{
|
|
|
|
if ( on )
|
|
|
|
{
|
|
|
|
xor = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
xor = 0;
|
|
|
|
}
|
|
|
|
led(current);
|
|
|
|
}
|
|
|
|
|
2004-09-10 12:55:55 +00:00
|
|
|
#else /* no LED, just dummies */
|
|
|
|
|
|
|
|
void led(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
|
|
|
|
void invert_led(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // #ifdef HAVE_LED
|