From 6bbcac063f794195c622658b3e865aabb30a87c8 Mon Sep 17 00:00:00 2001 From: Andrew Gresyk Date: Sat, 16 Oct 2021 12:45:02 +0300 Subject: [PATCH 1/2] Add ffsm2 and hfsm2 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index f8698bc..017f301 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,7 @@ as C/C++, as this is not an obstacle to most users.) - other - [AI](#ai) - [cryptography](#crypto) + - [state machines](#state-machines) - [user interface](#user-interface) - [miscellaneous](#miscellaneous) @@ -374,6 +375,12 @@ as C/C++, as this is not an obstacle to most users.) | [Picol](https://chiselapp.com/user/dbohdan/repository/picol/) | BSD |C/C++|**1**| interpreter for a Tcl-like scripting language | [s7](https://ccrma.stanford.edu/software/snd/snd/s7.html) | BSD |C/C++| 2 | interpreter for a subset of Scheme (R5RS/R7RS) +# state machines +| library | license | API |files| description +| -------------------------------------------------------------------------------------- |:--------------------:|:---:|:---:| ----------- +| [FFSM2](https://github.com/andrew-gresyk/FFSM2/blob/master/include/ffsm2/machine.hpp) | MIT | C++ |**1**| flat FSM +| [HFSM2](https://github.com/andrew-gresyk/HFSM2/blob/master/include/hfsm2/machine.hpp) | MIT | C++ |**1**| hierarchical FSM + # strings | library | license | API |files| description | --------------------------------------------------------------------- |:--------------------:|:---:|:---:| ----------- From 23894b16b27c9ca8a72ddff86c3faafda18db174 Mon Sep 17 00:00:00 2001 From: Andrew Gresyk Date: Sat, 16 Oct 2021 12:54:10 +0300 Subject: [PATCH 2/2] Replaced tab with spaces --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 017f301..6666cd6 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ as C/C++, as this is not an obstacle to most users.) - other - [AI](#ai) - [cryptography](#crypto) - - [state machines](#state-machines) + - [state machines](#state-machines) - [user interface](#user-interface) - [miscellaneous](#miscellaneous)