Как закрыть текущий ViewController и перейти к другому View в Swift

Вы пытаетесь распечатать значение указателя на строку вместо печати строки. Вы хотите сделать это вместо этого.

pop ebx     ;argument number
pop ebx     ;program name
pop ebx     ;pointer to the first argument

mov ecx,ebx ;load the pointer into ecx for the write system call

mov eax,4   ;load the other registers for the write system call
mov ebx,1
mov edx,3
int 80h

mov eax,1
mov ebx,0
int 80h
13
задан Michel Kansou 11 August 2015 в 23:20
поделиться