Compilation Flashcards
(6 cards)
1
Q
translate high level to low level:
if x<y
then {statement 1;}
statement 2;
A
if not (x<y) goto to skip
statement 1
skip
statement 2
2
Q
translate to assembly
if not (x<y) goto to skip
statement 1
skip
statement 2
A
3
Q
A
4
Q
A
5
Q
A
6
Q
A