dimanche 28 octobre 2018

Implementation of conditional statement in x86 assembly

I would like to know how to implement this lines of code into x86 masm assembly:

    if (x >= 1 && x <= 100) {
        printsomething1();
    } else if (x >= 101 && x <= 200) {
        printsomething2();
    } else {
        printsomething3();
    }

Aucun commentaire:

Enregistrer un commentaire