porównaj 2 liczby z montażem [zamknięte]

Mam następujący kod. Chcę uzupełnić kod zespołu, jak wskazano poniżej:

int main(void)
{
    int x = 10;

    int i=0;
    label1:


    asm (.....) // code to add here: if i>=x then jump to label2

    printf("%d\n",i);

    i++;
    asm (.....) // code to add here: jump to label 1
    label2:

    printf("out\n");
}

Mój komputer to x86, a system operacyjny to Ubuntu 12

questionAnswers(3)

yourAnswerToTheQuestion