(no commit message)
authorlkcl <lkcl@web>
Wed, 11 Mar 2020 07:34:18 +0000 (07:34 +0000)
committerIkiWiki <ikiwiki.info>
Wed, 11 Mar 2020 07:34:18 +0000 (07:34 +0000)
3d_gpu/architecture/decoder.mdwn

index 0f7231ea3836dfc6afa9c7aec9a751bd76aba09d..576931bc1043d46751f8507f52914f4f65a14ef4 100644 (file)
@@ -6,7 +6,7 @@ Source code: <https://git.libre-riscv.org/?p=soc.git;a=tree;f=src/soc/decoder;hb
 
 # POWER
 
-The decoder has been written in python, to parse straight CSV files and othrr information taken directly from the Power ISA Standards PDF files. This significantly reduces the possibility of manual transcription errors and greatly reduces code size.  Based on Anton Blanchard's excellent microwatt design, these tables are in [[openpower/isatables]] which includes links to doenload the csv files.
+The decoder has been written in python, to parse straight CSV files and other information taken directly from the Power ISA Standards PDF files. This significantly reduces the possibility of manual transcription errors and greatly reduces code size.  Based on Anton Blanchard's excellent microwatt design, these tables are in [[openpower/isatables]] which includes links to doenload the csv files.
 
 The top level decoder object recursively drops through progressive levels of case statement groups, covering additional portions of the incoming instruction bits.  More on this is outlined here <http://lists.libre-riscv.org/pipermail/libre-riscv-dev/2020-March/004882.html>