Start implementing functions
[fur] / templates / arithmetic_instruction.c
index 5b68efd..037679a 100644 (file)
@@ -1,4 +1,4 @@
-void {{ name }}(struct Thread* thread, const union Argument argument) {
+void inst_{{ name }}(struct Thread* thread, const union Argument argument) {
   // We're going to reuse result as both the first input and the result
   assert(!Stack_isEmpty(&(thread->stack)));
   Object result = Stack_pop(&(thread->stack));