惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
腾讯CDC
T
Tailwind CSS Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
The Cloudflare Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
B
Blog
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - 司徒正美
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research

博客园 - IT 笔记

Subversion Revert File will not be shown in Modification Surprise vb.net WinForm don't require instance to access the instance value Properties.Settings show error 'System.Windows.Forms.PropertyStore' does not contain a definition for 'Settings' Add Image in MS Report RDLC by using Embedded Image 王爽汇编 Lab 13 Question 1, 用两个程序实现 Spring.NET Installation and setup the first program 王爽汇编语言 实验11 王爽 汇编语言程序课程设计1 王爽 汇编语言程序设计实验10,题三,数值转换。(Assembly experiment Convert HEX to Decimal and Show on screen ) 王爽 汇编语言程序设计 实验9 (Assembly Language Study) 王爽 汇编语言程序设计 检测点9.1 第2题 The NTVDM CPU has encountered an illegal instruction. CS:0006 IP:130a .... select files by multiple extension name Access Denied when running Spring.IocQuickStart.MovieFinder using vb.net read unix style text file How to install autotrace in fontforge My first postscript program .net 2 config A generic winform skeleton support interactive UI during large job process
王爽汇编语言 检测点11.2
IT 笔记 · 2011-11-22 · via 博客园 - IT 笔记

摘自http://topic.csdn.net/u/20110830/19/15fe0e60-308a-47d2-89ed-81ebe04d1cbb.html?55611

sub al,al                ;  这步最好理解
 CF OF SF ZF PF
  0  0  0  1  1

mov al,10H               ;  MOV 指令不影响 Flag
 CF OF SF ZF PF
 0   0  0  1  1

add al,90H               ; 作无符号数,A0H无进位,当作有符号数,16+(-112),在-128~127,无溢出
 CF OF SF ZF PF
  0  0  1  0  1

mov al,80H               ;  MOV 指令不影响 Flag
 CF OF SF ZF PF
  0  0  1  0  1

add al,80H               ;作无符号数,100H,进位,作有符号数,(-128)+(-128),不在-128~127,溢出
CF OF SF ZF PF
 1  1  0  1  1

mov al,0FCH              ;  MOV 指令不影响 Flag
CF OF SF ZF PF
 1  1  0  1  1

add al,05H               ; 无符号,有进位,有符号,(-4)+5=1,在-128~127,无溢出
CF OF SF ZF PF
 1  0  0  0  0

mov al,7DH               ;  MOV 指令不影响 Flag
CF OF SF ZF PF
 1  0  0  0  0

add al,0BH               ; 无符号数,无进位,有符号数 125+12=137,不在-128~127,溢出
CF OF SF ZF PF
 0  1  1  0  1