implement C"

This commit is contained in:
2021-11-21 17:42:50 +01:00
parent 3c90303589
commit c0c88ebd42
4 changed files with 67 additions and 16 deletions
+5
View File
@@ -35,6 +35,11 @@ enum fh_instruction_kind {
/** This is the `s"` instruction, the length (u32) and string data immediately follow */
FH_INSTR_ALLOCSTR,
/** This is the `c"` instruction, the length (u32) and string data immediately follow.
* The string data already contains the length prefix.
*/
FH_INSTR_ALLOCSTR_C,
/** This is the `."` instruction, same format as above. */
FH_INSTR_TYPESTR,