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

index f0572f47b21ff4622ad58158779433d3405530f9..0f7231ea3836dfc6afa9c7aec9a751bd76aba09d 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.  These tables are in [[openpower/isatables]].
+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 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>