self
opcodes can have different meaning in different environments, the important thing is the base level. this is the main level where you're not lookaheading bytes. at this level these are the opcodes:
0x00
: zero0x01
: load_const0x02
: print0x03
: add
0x00
: nothing0x01
: u320x02
: u640x03
: i320x04
: i64
since the data types cannot be used without a instruction that is assigned to the opcodes can be the same.
note: all the bytecode data is stored using the little endian encoding.