Embedded Systems
ps_cpu.txt
Associated article: Predication, Speculation, and Modern CPUs
Tags: Embedded Systems Design
Published source code accompanying the article
Predication, Speculation, and Modern CPUs
by Andrew Chasin
Listing One
if (x > 5) then
printf("x > 5n");
else
printf ("x <= 5n");
cmp x, 5 // compare x with 5
ble l1: // branch if x <= 5
call printf &...


