From 6b1444aa3918382aba127c16c671f045a3586e53 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 02:29:14 +0100 Subject: Common pipe replaced with sender/receiver functors. [#27] C library now only takes care of relaying data to/from functors, which must be provided by the wrapping application (in this case, a new python module named 'common.py'). --- include/instset.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/instset.h') diff --git a/include/instset.h b/include/instset.h index eeb4600..a7f4773 100644 --- a/include/instset.h +++ b/include/instset.h @@ -44,8 +44,8 @@ enum { SALIS_INST DIVN, /**< / Divide two registers */ SALIS_INST LOAD, /**< L Load instruction from memory */ SALIS_INST WRTE, /**< W Write instruction into memory */ - SALIS_INST SEND, /**< S Send instruction to common pipe */ - SALIS_INST RECV, /**< R Receive instruction from common pipe */ + SALIS_INST SEND, /**< S Send instruction to common sender */ + SALIS_INST RECV, /**< R Receive instruction from common receiver */ SALIS_INST PSHN, /**< # Push value to stack */ SALIS_INST POPN /**< ~ Pop value from stack */ }; -- cgit v1.2.1