Question
Consider the below assembly code and assume that AX initially contains ABCD: MOV BX, 1234 MOV AX, [BX] MOV AX, BX The contents of Register AX after the execution of the above code is: a. unknown AX = (1234)16 .AX = (ABXX)16 -- x = any hex value (0 - F) .AX (xx00)16--> x is any hex value (0 F)
Question image 1Question image 2Question image 3Question image 4Question image 5Question image 6Question image 7Question image 8Question image 9