Васляев Дмитрий P32082
4 unresolved threads
- Last updated by Dmitrii Vasliaev
10 9 string_length: 11 10 xor rax, rax 12 ret 11 .iter: 12 cmp byte[rdi + rax], 0 13 je .quit 14 inc rax 15 jmp .iter 16 .quit: 17 ret 13 18 14 19 ; Принимает указатель на нуль-терминированную строку, выводит её в stdout 15 20 print_string: 16 xor rax, rax 21 push rdi 22 pop rsi changed this line in version 2 of the diff
- Last updated by Dmitrii Vasliaev
57 125 ; Эта функция должна дописывать к слову нуль-терминатор 58 126 59 127 read_word: 60 ret 61 128 xor rdx, rdx 129 .iter: 130 push rdi 131 push rsi 132 push rdx 133 call read_char 134 pop rdx 135 pop rsi 136 pop rdi 137 cmp rax, 0x20 changed this line in version 2 of the diff
- Last updated by Dmitrii Vasliaev
58 126 59 127 read_word: 60 ret 61 128 xor rdx, rdx 129 .iter: 130 push rdi 131 push rsi 132 push rdx 133 call read_char 134 pop rdx 135 pop rsi 136 pop rdi 137 cmp rax, 0x20 138 je .skip 139 cmp rax, 0x9 changed this line in version 2 of the diff
- Last updated by Dmitrii Vasliaev
60 ret 61 128 xor rdx, rdx 129 .iter: 130 push rdi 131 push rsi 132 push rdx 133 call read_char 134 pop rdx 135 pop rsi 136 pop rdi 137 cmp rax, 0x20 138 je .skip 139 cmp rax, 0x9 140 je .skip 141 cmp rax, 0xA changed this line in version 2 of the diff
@Meldren поправил =)
Approved @andrew