(no commit message)
authorlkcl <lkcl@web>
Tue, 9 Jun 2020 21:15:35 +0000 (22:15 +0100)
committerIkiWiki <ikiwiki.info>
Tue, 9 Jun 2020 21:15:35 +0000 (22:15 +0100)
Documentation/SOC/index.mdwn

index 4f1b4c30012e707650145e4427604f513b382d74..814b8fa3abb20acde9728e784611580b0eae39de 100644 (file)
@@ -79,7 +79,7 @@ and are usedto construct a hierarchical cascade of switch statements.  The origi
 [microwatt](https://github.com/antonblanchard/microwatt/blob/master/decode1.vhdl)
 where the original hardcoded cascade can be seen.
 
-The docstring for power_decoder.py gives mire details: each levrl in the hierarchy, just as in the original decode1.vhdl, will take slices of the instruction bitpattern, match against it, and if successful will continue with further subdecoders until a line is met that contains the Operand Information (a PowerOp) exactly as shown at the top of this page.
+The docstring for power_decoder.py gives more details: each level in the hierarchy, just as in the original decode1.vhdl, will take slices of the instruction bitpattern, match against it, and if successful will continue with further subdecoders until a line is met that contains the required Operand Information (a PowerOp) exactly as shown at the top of this page.
 
 In this way, different sections of the instruction are successively decoded (major opcode, then minor opcode, then sub-patterns under those) until the required instruction is fully recognised, and the hierarchical cascade of switch patterns results in a flat interpretation being produced that is useful internally.