September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
24
Task/String-length/X86-Assembly/string-length.x86
Normal file
24
Task/String-length/X86-Assembly/string-length.x86
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
.data
|
||||
string: .asciz "Test"
|
||||
|
||||
.text
|
||||
.globl main
|
||||
|
||||
main:
|
||||
pushl %ebp
|
||||
movl %esp, %ebp
|
||||
|
||||
pushl %edi
|
||||
xorb %al, %al
|
||||
movl $-1, %ecx
|
||||
movl $string, %edi
|
||||
cld
|
||||
repne scasb
|
||||
not %ecx
|
||||
dec %ecx
|
||||
popl %edi
|
||||
|
||||
;; string length is stored in %ecx register
|
||||
|
||||
leave
|
||||
ret
|
||||
Loading…
Add table
Add a link
Reference in a new issue