Changed bit field syntax to use an & symbol

This commit is contained in:
2022-08-24 18:37:44 -04:00
parent 731cc828ce
commit e316eb7791
4 changed files with 8 additions and 6 deletions

View File

@@ -299,7 +299,7 @@ func (member ObjtMember) ToString (indent int) (output string) {
output += member.what.ToString()
if member.bitWidth > 0 {
output += fmt.Sprint(":", member.bitWidth)
output += fmt.Sprint(" & ", member.bitWidth)
}
isComplexInitialization :=