My Project
Functions
field.c File Reference

You will modify this file and implement six functions. More...

#include "field.h"

Functions

int getBit (int value, int position)
 
int setBit (int value, int position)
 
int clearBit (int value, int position)
 
int getField (int value, int hi, int lo, bool isSigned)
 
int setField (int oldValue, int hi, int lo, int newValue)
 
int fieldFits (int value, int width, bool isSigned)
 

Detailed Description

Your implementation of the functions defined in field.h. You may add other function if you find it helpful. Added functions should be declared static to indicate they are only used within this file. For example, methods you write may need a mask value. You might write a method to compute a mask for you and use it wherever it is needed as opposed to just putting the code in line. These additional static functions are similar to Java’s private methods.

Author
Your name goes here

Function Documentation

◆ clearBit()

int clearBit ( int  value,
int  position 
)
Todo:
Implement in field.c based on documentation contained in field.h

◆ fieldFits()

int fieldFits ( int  value,
int  width,
bool  isSigned 
)
Todo:
Implement in field.c based on documentation contained in field.h

◆ getBit()

int getBit ( int  value,
int  position 
)
Todo:
Implement in field.c based on documentation contained in field.h

◆ getField()

int getField ( int  value,
int  hi,
int  lo,
bool  isSigned 
)
Todo:
Implement in field.c based on documentation contained in field.h

◆ setBit()

int setBit ( int  value,
int  position 
)
Todo:
Implement in field.c based on documentation contained in field.h

◆ setField()

int setField ( int  oldValue,
int  hi,
int  lo,
int  newValue 
)
Todo:
Implement in field.c based on documentation contained in field.h