Add call AM operation

This commit is contained in:
2025-08-10 21:33:25 +01:00
parent 426d270318
commit 167e91d816
4 changed files with 34 additions and 7 deletions

View File

@@ -35,5 +35,6 @@ void am_append(am_t *am, am_reg_t list_reg, am_reg_t item_reg);
void am_car(am_t *am, am_reg_t dest, am_reg_t src);
void am_cdr(am_t *am, am_reg_t dest, am_reg_t src);
void am_assign(am_t *am, am_reg_t dest, am_reg_t src);
void am_call(am_t *am, am_reg_t proc);
#endif