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

嵌入式Linux

开发平台:

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. }