diff --git a/doc/erko_hdl_design_article.txt b/doc/erko_hdl_design_article.txt
index 3a6c99add1f57ebf8770978eacc876a7388c33b8..433895dd599352b901db76912f8a902c9f1b56e8 100644
--- a/doc/erko_hdl_design_article.txt
+++ b/doc/erko_hdl_design_article.txt
@@ -1,3 +1,8 @@
+Digital logic: Ik noem logic zonder klok vaak "combinatorial logic". Deze term is op zich correct, maar de meer gangbare term is "combinational logic", zie
+https://en.wikipedia.org/wiki/Combinational_logic . Ik zal dat aanpassen in de documentatie. De logic met klok wordt "sequential logic" genoemd. Tesamen heet het "digital logic".
+
+Het verschil is dat sequential logic memory heeft (flip flop registers) en combinational logic niet. De combinational logic bepaalt de functie van de logic en de sequential logic de toestand. Daarnaast kan sequential logic ook nog dienen voor pipelining. Pipelining introduceert latency, en is (vaak) nodig om de kloktiming te halen, dwz om te zorgen dat de combinational logic output steeds stabiel is binnen een klokcycle. Hieronder heb ik geschetst hoe je functie, toestand en pipelining netjes gescheiden kunt houden bij het implementeren van register transfer level (RTL) code. 
+
 Idea / rule: Distinguish beteen state registers and pipeline registers.
 
 . The state registers keep the state of the function and the function itself is programmed in combinatorial logic.
@@ -31,6 +36,7 @@ Idea / rule: Distinguish beteen state registers and pipeline registers.
 . Components that do need input flow control can OR their input flow control with the external flow control
   and wire that to the input_siso.
 
+  
 
 $RADIOHDL_WORK/applications/lofar2/doc/prestudy/