Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a function to change variable from little endian to big endian notation The basic structure of the function is given in the attached assembly

Write a function to change variable from little endian to big endian notation

The basic structure of the function is given in the attached assembly language file. You are expected to complete the function int toBigEndian(int variable) which converts an integer variable passed from little endian to big endian notation. The conversion function should simply accept the number variable and flip the order of the bytes and return the resulting value. For example Variable passed to function 0xAABBCCDD The value returned from the function 0xDDCCBBAA Complete the function implementation which takes a little endian notation as input and returns the big endian notation of the given value from the function as given in the above example. The function with the basic commands for the function entry and exit / return are already given.

Also,

Write a function to check if a machine uses little endian or big endian notation. The basic structure of the program is given in the attached assembly language file. You are expected to write the function int isLittleEndian(). Complete the function implementation to return the following values from the function. The function int isLittleEndian () should return the following values: 1 if the architecture is "Little Endian" 0 if the architecture is "Big Endian"

Use the given main and .h function and fill in your implementation C language

#include  #include "Hw5function.h" int main() { int in1, in2; int out1, out2; // Sample input value (It may be tested with other input values) // Do not hard code these values inside the function in1 = 0xAABBCCDD; out1 = toBigEndian(in1); printf(" Output1: %d", out1); // Sample input value (It may be tested with other input values) // Do not hard code these values inside the function out2 = isLittleEndian(); printf(" Output2: %d", out2); return 0; } 
//Hw5function.h extern int toBigEndian(int); extern int isLittleEndian(int); 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions