From: whitequark Date: Mon, 19 Aug 2019 21:44:23 +0000 (+0000) Subject: README: fix typos. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d11b7e35ea8f7db485eba4ebe0a6b4650ba547b7;p=nmigen.git README: fix typos. --- diff --git a/README.md b/README.md index 8376625..3df893a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## A refreshed Python toolbox for building complex digital hardware -**Although nMigen is incomplete and in active development, it can already be used for real-world designs. The nMigen language (`nmigen.ast`, `nmigen.dsl`) will not undergo incompatible changes. The nMigen standard library (`nmigen.lib`) and build system (`nmigen.build`) will undergo minimal changes before their design is finalized.** +**Although nMigen is incomplete and in active development, it can already be used for real-world designs. The nMigen language (`nmigen.hdl.ast`, `nmigen.hdl.dsl`) will not undergo incompatible changes. The nMigen standard library (`nmigen.lib`) and build system (`nmigen.build`) will undergo minimal changes before their design is finalized.** Despite being faster than schematics entry, hardware design with Verilog and VHDL remains tedious and inefficient for several reasons. The event-driven model introduces issues and manual coding that are unnecessary for synchronous circuits, which represent the lion's share of today's logic designs. Counterintuitive arithmetic rules result in steeper learning curves and provide a fertile ground for subtle bugs in designs. Finally, support for procedural generation of logic (metaprogramming) through "generate" statements is very limited and restricts the ways code can be made generic, reused and organized.