aboutsummaryrefslogtreecommitdiff
path: root/include/instset.h
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 02:29:14 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 02:29:14 +0100
commit6b1444aa3918382aba127c16c671f045a3586e53 (patch)
tree08b6b1e55383d63ba4e5824071620a35f737925c /include/instset.h
parent2250b4db92bd272dbb1fd717eb791e293c17e37a (diff)
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').
Diffstat (limited to 'include/instset.h')
-rw-r--r--include/instset.h4
1 files changed, 2 insertions, 2 deletions
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 */
};