bloggerads

2014年3月6日 星期四

Assembly : 設定 register的 bit為0 or 1

1. 將 eax 的 bit 3 清為 0  

+         test   eax,  1  shl  3
+         jz      @f
+         xor    eax,  1  shl  3
+  @@:                             ;; eax bit 3 is 0 now

2. 將 eax 的 bit 3 設為 1       

+    or     eax,  1  shl  3


沒有留言:

張貼留言