Rewrite the description of RTL generation to make more sense

I was having trouble understanding the language here. I *think* this is what it meant to mean.
This commit is contained in:
interfect 2024-08-13 22:22:06 -04:00 committed by GitHub
parent 9c049e21ac
commit e84a315c47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 7 deletions

View File

@ -22,15 +22,15 @@ Look Up Tables implement only the functionality of logic gates.
Due to that, the synthesis process has to convert the complicated Due to that, the synthesis process has to convert the complicated
Behavioral model to a simpler description. Behavioral model to a simpler description.
Firstly, the design is described in terms of registers and logical operations. First, the design is described in terms of registers and logical operations.
This is the so-called *Register-Transfer Level* (*RTL*). This is the so-called *Register-Transfer Level* (*RTL*).
Secondly, in order to simplify the design even more, some complex logic is Second, in order to simplify the design even more, some complex logic is
rewritten in the way that the final result contain only logic gates rewritten in such a way that the final result contains only logic gates
and registers. This model is on *Logical Gate level* of abstraction. and registers. This model is on the *Logical Gate level* of abstraction.
The process of simplification is quite complicated, because of that it often This process of simplification is quite complicated, so it is often necessary
demands additional simulations between mentioned steps to prove that the input to have additional simulations between the mentioned steps, to prove that the
design is equivalent to its simplified form. input design is equivalent to its simplified form.
Technology mapping Technology mapping
================== ==================