target.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2000 Texas Instruments Incorporated
  3.  */
  4. /*
  5.  * $Log: target.h,v $
  6.  * Revision 1.2  2000/12/08 18:37:51  heeschen
  7.  * v0.00002 of FBTC62
  8.  * Updated as a result of code review 12/05/00 on the
  9.  * FBTC54 program. Mainly changed Comm. Protocol
  10.  * and RSX messaging. Also taking posession of type.h
  11.  * and intvecs.asm.
  12.  *
  13.  */
  14. /* This is taken directly from the RTDX tutorials.
  15.  */
  16. #ifndef __TARGET_H
  17. #define __TARGET_H
  18. extern cregister volatile unsigned int IER;
  19. extern cregister volatile unsigned int ISR;
  20. extern cregister volatile unsigned int CSR;
  21. #define NMIE_BIT 0x00000002
  22. #define TARGET_INITIALIZE() 
  23. IER |= 0x00000001 | NMIE_BIT; 
  24. CSR |= 0x00000001;
  25. #endif // __TARGET_H