Merge pull request #88326 from brennennen/cmd_mask_comment_typo

Fixed binary representation typo in comment
This commit is contained in:
Rémi Verschelde 2024-02-15 15:45:11 +01:00
commit 39fcef1b2f
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -98,7 +98,7 @@ public:
// This is the mask that will be used to extract the command.
enum {
CMD_MASK = 7, // 0x7 -> 0b00001111
CMD_MASK = 7, // 0x7 -> 0b00000111
};
private: