xor   flags, 01000000b           ; Reverse bit
; Similar instructions will work whenever the second operand of mod is a power of 2
and eax, 0000001fh ; EAX Mod 32
; This will work
sub al, 30h ; ASCII to Integer (Common)
;
But if you don't know whether the source is a ASCII or a numeric string, you can use the one below
and al, 00001111b ; ASCII to Integer (Better)




相关文章:

  • 2022-12-23
  • 2021-08-21
  • 2022-12-23
  • 2022-12-23
  • 2021-09-17
  • 2022-12-23
  • 2022-01-02
  • 2021-12-14
猜你喜欢
  • 2021-11-05
  • 2022-12-23
  • 2021-11-01
  • 2022-02-16
  • 2021-09-20
  • 2022-01-04
相关资源
相似解决方案