4Binary format constants shared by the Serializer and Deserializer.
8 """Pack a 4-character ASCII string into a little-endian uint32 magic number."""
10 return b[0] | (b[1] << 8) | (b[2] << 16) | (b[3] << 24)
13VERSION: int = 0x03000000
16SEC_CONSTANTS: int = 0x01
17SEC_VARIABLES: int = 0x02
18SEC_INSTRUCTIONS: int = 0x03
19SEC_FUNCTIONS: int = 0x04