Home > other >  How can you tell a computer it is adding without addl in Assembly
How can you tell a computer it is adding without addl in Assembly

Time:04-12

I know a bit about Assembly. So let me first introduce the codes, then explain my way of thinking.

#This is the Assembly version.
pushq   %rbp
movq    %rsp, %rbp
movl    $2, -4(%rbp)
movl    $3, -8(%rbp)
movl    $5,            
  • Related