Allow the formal engine to perform a same-cycle result in the ALU
[soc.git] / src / soc / decoder / pseudo / lexer.py
2021-04-23 Luke Kenneth Casso... remove pseudo, moved to openpower-isa
2021-04-23 Luke Kenneth Casso... move over to from openpower imports
2020-07-22 Jacob LifshayMerge remote-tracking branch 'origin/master'
2020-07-22 Jacob Lifshayformat code
2020-06-29 Luke Kenneth Casso... whoops, hex parser digits are in multiples of 4 bits
2020-04-06 Jacob LifshayMerge branch 'fix-tests'
2020-04-06 Luke Kenneth Casso... whoops missing final newline, needed for parser to end
2020-04-06 Luke Kenneth Casso... skip blank lines between cases
2020-04-06 Luke Kenneth Casso... add annoying case-hack filter
2020-04-05 Luke Kenneth Casso... get hex to recognise capitals
2020-04-05 Luke Kenneth Casso... add HEX to parser
2020-04-05 Luke Kenneth Casso... add start on switch/case/default in parser
2020-04-05 Luke Kenneth Casso... case and default do not need implicit colon
2020-04-05 Luke Kenneth Casso... add switch case and default keywords
2020-04-04 Luke Kenneth Casso... add != operator
2020-04-04 Luke Kenneth Casso... add <-iea operator
2020-04-04 Luke Kenneth Casso... whoops wrong token for XOR
2020-04-04 Luke Kenneth Casso... add support for syntax "do i = N to N" equivalent to for
2020-04-04 Luke Kenneth Casso... try again with adding XOR operator
2020-04-04 Luke Kenneth Casso... add modulo to parser (and div to SelectableInt)
2020-04-03 Luke Kenneth Casso... add invert operator, fix unary ops
2020-04-03 Luke Kenneth Casso... add bit-wise OR and AND
2020-04-03 Luke Kenneth Casso... add less-than, greater-than, signed, and le/ge
2020-04-02 Luke Kenneth Casso... start parsing all source files, output python
2020-04-02 Luke Kenneth Casso... add in ability to concat ints
2020-04-02 Luke Kenneth Casso... success using SelectableInt in cnttzd test
2020-04-01 Luke Kenneth Casso... move demo code for lexer
2020-04-01 Luke Kenneth Casso... move IndentLexer to separate module