1. Write an assembly language code fragment (32-bit or 64-bit) to perform the following decision logic (without using co
Posted: Fri May 20, 2022 4:30 pm
1. Write an assembly language code fragment (32-bit or 64-bit) to perform the following decision logic (without using conditional control flow directives, such as .IF, .ELSE, etc.): If (Aval < Bval) or (Bval < Cval) { Put 1 in a Dreg } else { if ( Aval < Bval) { Put O in Breg } else if (Bval < CVal) { Put O in CReg } else { Put O in Dreg } }