In the x86 assembly language, the TEST instruction performs a bitwise AND on two operands. The flags SF, ZF, PF are modified while the result of the AND is discarded.

; Conditional Jump
test cl, cl ; set ZF to 1 if cl == 0
je 0x804f430 ; jump if ZF ==1 ; or
test eax, eax ; set SF to 1 if eax < 0 (negative)
js error ; jump if SF == 1

https://en.wikipedia.org/wiki/TEST_(x86_instruction)

最新文章

  1. sql奇进偶舍函数
  2. Android UI控件----ExpandableListView的基本用法
  3. shared_ptr 线程安全
  4. Android SQL语句实现数据库的增删改查
  5. jQuery中添加自定义或函数方法
  6. poj1258 Agri-Net 最小生成树
  7. Ubuntu各个版本的介绍
  8. 学习IOS需要知道的事
  9. Consumer closed input channel or an error occurred. events=0x8 channel is unrecoverably broken and will be disposed(待解决)
  10. iOS开发——高级技术&amp;摇一摇功能的实现
  11. windows2008 x86 安装 32位oracle
  12. what a malloc has to do
  13. fiddler4手机抓包
  14. linq 起源
  15. [HNOI2005]狡猾的商人
  16. NopCommerce开源项目中很基础但是很实用的C# Helper方法
  17. eclipse如何更换工作空间
  18. 利用特性和反射给泛型Model赋值
  19. 循环更新sqlserver数据库表ID
  20. 绝版珍珍藏:web前端技术学习指南

热门文章

  1. 如何找到所有HTML Select 标签的选中项?
  2. BZOJ2735 : 世博会
  3. java Android SDK安装与环境变量配置以及开发第一个Android程序
  4. WP7.1 应用程序发布到Marketplace
  5. 【BZOJ】2209: [Jsoi2011]括号序列(splay)
  6. 【BZOJ】1084: [SCOI2005]最大子矩阵(DP)
  7. C++ Generate Rand Number Array by &quot;srand()&quot; 生成随机数
  8. T-SQL查询进阶--深入浅出视图
  9. Note: RewriteCond规则
  10. PHP文件操作 之读取一个文件(以二进制只读的方式打开)