@@ -5,16 +5,17 @@ The **Number Format** formats the size of a specificed number.
55```
66
77The formats for storing the numbers are:
8- Int8LE: one byte, signed, little endian
9- UInt8LE: one byte, unsigned, little endian
10- Int8BE: one byte, signed, big endian
11- UInt8BE: one byte, unsigned, big endian
12- Int16LE: two bytes, signed, little endian
13- UInt16LE: two bytes, unsigned, little endian
14- Int16BE: two bytes, signed, big endian
15- UInt16BE: two bytes, unsigned, big endian
16- Int32LE: four bytes, signed, little endian
17- Int32BE: four bytes, signed, big endian
8+
9+ * Int8LE: one byte, signed, little endian
10+ * UInt8LE: one byte, unsigned, little endian
11+ * Int8BE: one byte, signed, big endian
12+ * UInt8BE: one byte, unsigned, big endian
13+ * Int16LE: two bytes, signed, little endian
14+ * UInt16LE: two bytes, unsigned, little endian
15+ * Int16BE: two bytes, signed, big endian
16+ * UInt16BE: two bytes, unsigned, big endian
17+ * Int32LE: four bytes, signed, little endian
18+ * Int32BE: four bytes, signed, big endian
1819
1920## See also
2021[ buffers] ( https://github.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/blob/main/docs/buffers.md )
0 commit comments