程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> #i nclude <INTRINS.h>

#i nclude <INTRINS.h>

編輯:關於C語言
 

c51中的intrins.h庫函數
_crol_ 字符循環左移
_cror_ 字符循環右移
_irol_ 整數循環左移
_iror_ 整數循環右移
_lrol_ 長整數循環左移
_lror_ 長整數循環右移
_nop_ 空操作8051 NOP 指令
_testbit_ 測試並清零位8051 JBC 指令
詳解:


函數名: _crol_,_irol_,_lrol_
原 型: unsigned char _crol_(unsigned char val,unsigned char n);
unsigned int _irol_(unsigned int val,unsigned char n);
unsigned int _lrol_(unsigned int val,unsigned char n);
功 能:_crol_,_irol_,_lrol_以位形式將val 左移n 位,該函數與8051“RLA”指令
相關,上面幾個函數不同於參數類型。
例:
#i nclude
main()
{
unsigned int y;
C-5 1 程序設計 37
y=0x00ff;
y=_irol_(y,4); /*y=0x0ff0*/
}

函數名: _cror_,_iror_,_lror_
原 型: unsigned char _cror_(unsigned char val,unsigned char n);
unsigned int _iror_(unsigned int val,unsigned char n);
unsigned int _lror_(unsigned int val,unsigned char n);
功 能:_cror_,_iror_,_lror_以位形式將val 右移n 位,該函數與8051“RRA”指令
相關,上面幾個函數不同於參數類型。
例:
#i nclude
main()
{
unsigned int y;
y=0x0ff00;
y=_iror_(y,4); /*y=0x0ff0*/
}

函數名: _nop_
原 型: void _nop_(void);
功 能:_nop_產生一個NOP 指令,該函數可用作C 程序的時間比較。C51 編譯器在_nop_
函數工作期間不產生函數調用,即在程序中直接執行了NOP 指令。
例:
P()=1;
_nop_();
P()=0;

函數名: _testbit_
原 型:bit _testbit_(bit x);
功 能:_testbit_產生一個JBC 指令,該函數測試一個位,當置位時返回1,否則返回0。
如果該位置為1,則將該位復位為0。8051 的JBC 指令即用作此目的。
_testbit_只能用於可直接尋址的位;在表達式中使用是不允許的。

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved