diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-07-31 22:29:24 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 0f26e1d204d3a3026ca3edfc4c6bd9638b2632e7 (patch) | |
tree | de196ca25cf8f685e14b219198162d68c61efcfd /include/bytecode | |
parent | fa2a9e79e21063137f863887adc88fc74d3573e2 (diff) |
Add nullable, add bytecode documentation
Diffstat (limited to 'include/bytecode')
-rw-r--r-- | include/bytecode/bytecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bytecode/bytecode.h b/include/bytecode/bytecode.h index 32488cc..4c54fbd 100644 --- a/include/bytecode/bytecode.h +++ b/include/bytecode/bytecode.h @@ -11,7 +11,7 @@ /*doc(Opcode) Variable length opcodes. Sizes range from 1 to 4 bytes. # Instruction formats - Instructions can be in 6 different formats: + Instructions can be in 7 different formats: 1. 1 byte: Opcode(u8) 2. 2 bytes: Opcode(u8) + register(u8) 3. 3 bytes: Opcode(u8) + register(u8) + register(u8) |