Fixed binary representation typo in comment

This commit is contained in:
brennen 2024-02-14 07:58:37 -06:00
parent 907db8eebc
commit 26d9fbaf52

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: