| 23 | ) |
| 24 | |
| 25 | type Bitwise struct { |
| 26 | SourceRegister uint32 |
| 27 | DestRegister uint32 |
| 28 | Len uint32 |
| 29 | Mask []byte |
| 30 | Xor []byte |
| 31 | } |
| 32 | |
| 33 | func (e *Bitwise) marshal(fam byte) ([]byte, error) { |
| 34 | data, err := e.marshalData(fam) |
nothing calls this directly
no outgoing calls
no test coverage detected