<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sfcX/test/integration, branch 1.6.x</title>
<subtitle>Scala FIRRTL Compiler for chiselX</subtitle>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/'/>
<entry>
<title>Change to Apache 2.0 License (#1901)</title>
<updated>2020-09-17T01:52:16+00:00</updated>
<author>
<name>Chick Markley</name>
</author>
<published>2020-09-17T01:52:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=ecb96e83324ea17cf38b7b90753d745d3c7f51bd'/>
<id>ecb96e83324ea17cf38b7b90753d745d3c7f51bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update RightShiftTests.fir to avoid buggy Counter pattern</title>
<updated>2020-07-27T15:50:09+00:00</updated>
<author>
<name>Albert Magyar</name>
</author>
<published>2020-04-14T21:27:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=9ab58c1efb503aec00c22dbd70434038ec87dcab'/>
<id>9ab58c1efb503aec00c22dbd70434038ec87dcab</id>
<content type='text'>
* See freechipsproject/chisel3#1408
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* See freechipsproject/chisel3#1408
</pre>
</div>
</content>
</entry>
<entry>
<title>Protobuf (#832)</title>
<updated>2018-06-28T23:57:03+00:00</updated>
<author>
<name>Jack Koenig</name>
</author>
<published>2018-06-28T23:57:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=3243f05a69b4b77761699be412f349a9b8b9193f'/>
<id>3243f05a69b4b77761699be412f349a9b8b9193f</id>
<content type='text'>
Add support for ProtoBuf serialization and deserialization

* Add support for additional features in .proto description

Features added: Info, Fixed[Type|Literal], AnalogType, Attach, Params

* Add support for .pb input files

This involves an API change where FIRRTL no longer implicitly adds .fir
to input file names</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support for ProtoBuf serialization and deserialization

* Add support for additional features in .proto description

Features added: Info, Fixed[Type|Literal], AnalogType, Attach, Params

* Add support for .pb input files

This involves an API change where FIRRTL no longer implicitly adds .fir
to input file names</pre>
</div>
</content>
</entry>
<entry>
<title>Emitting reg update mux tree, only walk netlist for wires and nodes</title>
<updated>2017-06-28T01:50:15+00:00</updated>
<author>
<name>Jack Koenig</name>
</author>
<published>2017-06-28T00:25:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=6f55a30b201716b6a0e72b65f6e5777b6b5d4b81'/>
<id>6f55a30b201716b6a0e72b65f6e5777b6b5d4b81</id>
<content type='text'>
Fixes bug where the Verilog emitter could pull the next value for a
register that feeds a second register, removing the first register from
the second register's update.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes bug where the Verilog emitter could pull the next value for a
register that feeds a second register, removing the first register from
the second register's update.
</pre>
</div>
</content>
</entry>
<entry>
<title>Clk2clock - rename the implicit "clk" module input "clock" (#387)</title>
<updated>2016-12-08T17:25:42+00:00</updated>
<author>
<name>Jim Lawson</name>
</author>
<published>2016-12-08T17:25:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=cfb3a48986500422cbf6ba8887030dee3a973933'/>
<id>cfb3a48986500422cbf6ba8887030dee3a973933</id>
<content type='text'>
* Rename implict module "clk" input to "clock".
This doesn't rename all the "self-contained" test instances.
nor the memory "clk" enables,
nor the implict module "clk"s in the regress .fir files.

* Consistency: rename implict module "clk" input to "clock" in "self-contained" test instances.
This doesn't rename the memory "clk" enables, nor the implict module "clk"s in the regress .fir files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Rename implict module "clk" input to "clock".
This doesn't rename all the "self-contained" test instances.
nor the memory "clk" enables,
nor the implict module "clk"s in the regress .fir files.

* Consistency: rename implict module "clk" input to "clock" in "self-contained" test instances.
This doesn't rename the memory "clk" enables, nor the implict module "clk"s in the regress .fir files.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change RW port names (#236)</title>
<updated>2016-08-17T20:34:14+00:00</updated>
<author>
<name>Angie Wang</name>
</author>
<published>2016-08-17T20:34:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=5db4abebb7ceb5939a9efca158d78e3dc0e32c44'/>
<id>5db4abebb7ceb5939a9efca158d78e3dc0e32c44</id>
<content type='text'>
* Updated FIRRTL spec + related code for readwrite ports.
    (write) data -&gt; wdata &amp; mask -&gt; wmask for clarity

* Also removed simple.fir that snuck into master branch.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Updated FIRRTL spec + related code for readwrite ports.
    (write) data -&gt; wdata &amp; mask -&gt; wmask for clarity

* Also removed simple.fir that snuck into master branch.</pre>
</div>
</content>
</entry>
<entry>
<title>Add integration test for single-ported memory</title>
<updated>2016-05-24T16:46:40+00:00</updated>
<author>
<name>jackkoenig</name>
</author>
<published>2016-04-27T07:32:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=89cbd83265c5bfb3968865ebaddf79efb4f47050'/>
<id>89cbd83265c5bfb3968865ebaddf79efb4f47050</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revamp string literal handling</title>
<updated>2016-03-15T20:43:57+00:00</updated>
<author>
<name>jackkoenig</name>
</author>
<published>2016-03-15T05:35:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=373d3cfcb5566c448dcad6b679dee43bf66f878a'/>
<id>373d3cfcb5566c448dcad6b679dee43bf66f878a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for right shift by amount larger than argument width</title>
<updated>2016-03-10T21:37:53+00:00</updated>
<author>
<name>jackkoenig</name>
</author>
<published>2016-03-10T09:23:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=5737a8ccbf54a6d22095023205867e851e204c3f'/>
<id>5737a8ccbf54a6d22095023205867e851e204c3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add some integration tests: successful compilation and execution</title>
<updated>2016-03-03T20:23:57+00:00</updated>
<author>
<name>jackkoenig</name>
</author>
<published>2016-03-03T20:23:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/sfcX/commit/?id=4d77e3ac1020b404e5a0f5d68cd36fb3a07ef333'/>
<id>4d77e3ac1020b404e5a0f5d68cd36fb3a07ef333</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
