leds.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include <asm/contregs.h>
  2. #include <asm/sun3mmu.h>
  3. #include <asm/io.h>
  4. #include <asm/movs.h>
  5. #define FC_CONTROL 3    /* This should go somewhere else... */
  6. void sun3_leds(unsigned char byte)
  7. {
  8. unsigned char dfc;
  9. GET_DFC(dfc);
  10.         SET_DFC(FC_CONTROL);
  11.         SET_CONTROL_BYTE(AC_LEDS,byte);
  12. SET_DFC(dfc);
  13. }