blinken.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ** asm/blinken.h -- m68k blinkenlights support (currently hp300 only)
  3. **
  4. ** (c) 1998 Phil Blundell <philb@gnu.org>
  5. **
  6. ** This file is subject to the terms and conditions of the GNU General Public
  7. ** License.  See the file COPYING in the main directory of this archive
  8. ** for more details.
  9. **
  10. */
  11. #ifndef _M68K_BLINKEN_H
  12. #define _M68K_BLINKEN_H
  13. #include <asm/setup.h>
  14. #define HP300_LEDS 0xf001ffff
  15. static __inline__ void blinken_leds(int x)
  16. {
  17.   if (MACH_IS_HP300)
  18.   {
  19.     *((volatile unsigned char *)HP300_LEDS) = (x);
  20.   }
  21. }
  22. #endif