Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
メモリではなくレジスタを使用すると、文字が出力されないのはなぜですか?
コードは次のとおりです。
mov eax,97 mov ebp,eax call print_char print_char: pusha mov eax,4 mov ebx,1 mov ecx,ebp mov edx,1 int 80h popa ret