Closed shiftre closed 7 years ago
It seem to be a syntax error, while having no idea how to confirm that, (the compilation says OK), hm.
id: BaseChunk
is not a valid identifier; generally, one's expected to write lower_underscore_case
identifiers, they would be formatted automatically according to the target language standardscontents
key is to specify byte arrays, and [0xdeadbeef]
(and similar declarations) is clearly not a byte. So, you've probably meant either [0xde, 0xad, 0xbe, 0xef]
or [0xef, 0xbe, 0xad, 0xde]
, depending on representation of that integer (likely the latter, as you've specified endian: le
).
Am I missing something?