Add register parameters to AM append operation

This commit is contained in:
2025-08-10 20:50:35 +01:00
parent 76efcef953
commit eaef6f3cd3
5 changed files with 40 additions and 24 deletions

View File

@@ -31,6 +31,6 @@ typedef struct am {
void am_init(am_t *am);
void am_push(am_t *am, am_reg_t reg);
void am_pop(am_t *am, am_reg_t reg);
void am_append_arg(am_t *am);
void am_append(am_t *am, am_reg_t list_reg, am_reg_t item_reg);
#endif