Merge branch '17.0'

This commit is contained in:
Alex Lin
2016-09-16 09:50:12 -05:00
3 changed files with 13 additions and 0 deletions

View File

@ -443,6 +443,14 @@ void FieldDescription::setBitFieldWidth(unsigned int len) {
bitfield_width = len ;
}
void FieldDescription::setBitFieldStart(unsigned int sb) {
bitfield_start_bit = sb ;
}
void FieldDescription::setBitFieldByteOffset(unsigned int wo) {
bitfield_word_offset = wo ;
}
unsigned int FieldDescription::getBitFieldWidth() {
return bitfield_width ;
}