Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 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