420 views

1 Answer

Best answer
2 votes
2 votes

$32$ bits means $4$ bytes which are as follows

$01\quad bd\quad 2d\quad 0d$

Little endian means, lower byte is at smallest address. So, the bytes read in the more significant order will be 

$0d\quad 2d\quad bd\quad 01 = 00001101\;00101101\;10111101\;00000001$

You can convert this to Decimal :)

selected by

Related questions

3 votes
3 votes
1 answer
1
3 votes
3 votes
1 answer
2
1 votes
1 votes
1 answer
4
isriram asked Jun 9, 2022
1,152 views
Consider a system which supports only 1-address type instructions. The size of memory the system has is $2^m$ KB. The system supports ' i ' distinct instructions. The len...