mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-11 10:39:56 -05:00
Adding 'byte to follow' comments back.
This commit is contained in:
parent
c5a954fb56
commit
87590202cc
1 changed files with 4 additions and 4 deletions
|
@ -41,10 +41,10 @@ const BTSendRateMax = 40;
|
||||||
* @enum {number}
|
* @enum {number}
|
||||||
*/
|
*/
|
||||||
const Ev3Encoding = {
|
const Ev3Encoding = {
|
||||||
LOCAL_CONSTANT_ONE_BYTE: 0x81, // = 0b1000-001
|
LOCAL_CONSTANT_ONE_BYTE: 0x81, // = 0b1000-001, "1 byte to follow"
|
||||||
LOCAL_CONSTANT_TWO_BYTES: 0x82, // = 0b1000-010
|
LOCAL_CONSTANT_TWO_BYTES: 0x82, // = 0b1000-010, "2 bytes to follow"
|
||||||
LOCAL_CONSTANT_FOUR_BYTES: 0x83, // = 0b1000-011
|
LOCAL_CONSTANT_FOUR_BYTES: 0x83, // = 0b1000-011, "4 bytes to follow"
|
||||||
GLOBAL_VARIABLE_ONE_BYTE: 0xE1, // = 0b1110-001
|
GLOBAL_VARIABLE_ONE_BYTE: 0xE1, // = 0b1110-001, "1 byte to follow"
|
||||||
GLOBAL_CONSTANT_INDEX_0: 0x20, // = 0b00100000
|
GLOBAL_CONSTANT_INDEX_0: 0x20, // = 0b00100000
|
||||||
GLOBAL_VARIABLE_INDEX_0: 0x60 // = 0b00110000
|
GLOBAL_VARIABLE_INDEX_0: 0x60 // = 0b00110000
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue