feat(furvm): add operation instructions

This commit is contained in:
2026-06-10 20:02:31 +02:00
parent 0534359503
commit 4d935ef75f
4 changed files with 145 additions and 1 deletions
+25
View File
@@ -40,6 +40,31 @@ enum class instruction_t : byte {
*/
Clone,
/**
* @brief Adds two things together on the stack.
*/
Add,
/**
* @brief Subtracts two things together on the stack.
*/
Sub,
/**
* @brief Multiplies two things together on the stack.
*/
Mul,
/**
* @brief Divides two things together on the stack.
*/
Div,
/**
* @brief Modulos two things together on the stack.
*/
Mod,
/**
* @brief Pops the current call frame.
*/