Skip to content

Commit bd32bab

Browse files
Deploying to main from @ amaranth-lang/amaranth@0e6d802 🚀
1 parent dc597da commit bd32bab

40 files changed

+123
-96
lines changed

docs/amaranth/latest/.buildinfo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: e53fb8f0a098fc157f60c39f6fdf681a
3+
config: 45111821ebec9fb3fa6f121e90329181
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
816 Bytes
Binary file not shown.
Binary file not shown.
4.95 KB
Binary file not shown.

docs/amaranth/latest/_sources/changes.rst.txt

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Implemented RFCs
5656
.. _RFC 51: https://amaranth-lang.org/rfcs/0051-const-from-bits.html
5757
.. _RFC 53: https://amaranth-lang.org/rfcs/0053-ioport.html
5858
.. _RFC 55: https://amaranth-lang.org/rfcs/0055-lib-io.html
59+
.. _RFC 58: https://amaranth-lang.org/rfcs/0058-valuecastable-format.html
5960
.. _RFC 59: https://amaranth-lang.org/rfcs/0059-no-domain-upwards-propagation.html
6061
.. _RFC 62: https://amaranth-lang.org/rfcs/0062-memory-data.html
6162

@@ -68,6 +69,7 @@ Implemented RFCs
6869
* `RFC 50`_: ``Print`` statement and string formatting
6970
* `RFC 51`_: Add ``ShapeCastable.from_bits`` and ``amaranth.lib.data.Const``
7071
* `RFC 53`_: Low-level I/O primitives
72+
* `RFC 58`_: Core support for ``ValueCastable`` formatting
7173
* `RFC 59`_: Get rid of upwards propagation of clock domains
7274
* `RFC 62`_: The `MemoryData`` class
7375

docs/amaranth/latest/_static/documentation_options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '0.5.0.dev213',
3+
VERSION: '0.5.0.dev214',
44
LANGUAGE: 'en',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

docs/amaranth/latest/changes.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Changelog &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Changelog &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -41,7 +41,7 @@
4141
<img src="_static/logo.png" class="logo" alt="Logo"/>
4242
</a>
4343
<div class="version">
44-
0.5.0.dev213+gf21d3d0
44+
0.5.0.dev214+g0e6d802
4545
</div>
4646
<div role="search">
4747
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -173,6 +173,7 @@ <h3>Implemented RFCs<a class="headerlink" href="#implemented-rfcs" title="Permal
173173
<li><p><a class="reference external" href="https://amaranth-lang.org/rfcs/0050-print.html">RFC 50</a>: <code class="docutils literal notranslate"><span class="pre">Print</span></code> statement and string formatting</p></li>
174174
<li><p><a class="reference external" href="https://amaranth-lang.org/rfcs/0051-const-from-bits.html">RFC 51</a>: Add <code class="docutils literal notranslate"><span class="pre">ShapeCastable.from_bits</span></code> and <code class="docutils literal notranslate"><span class="pre">amaranth.lib.data.Const</span></code></p></li>
175175
<li><p><a class="reference external" href="https://amaranth-lang.org/rfcs/0053-ioport.html">RFC 53</a>: Low-level I/O primitives</p></li>
176+
<li><p><a class="reference external" href="https://amaranth-lang.org/rfcs/0058-valuecastable-format.html">RFC 58</a>: Core support for <code class="docutils literal notranslate"><span class="pre">ValueCastable</span></code> formatting</p></li>
176177
<li><p><a class="reference external" href="https://amaranth-lang.org/rfcs/0059-no-domain-upwards-propagation.html">RFC 59</a>: Get rid of upwards propagation of clock domains</p></li>
177178
<li><p><a class="reference external" href="https://amaranth-lang.org/rfcs/0062-memory-data.html">RFC 62</a>: The <cite>MemoryData`</cite> class</p></li>
178179
</ul>

docs/amaranth/latest/changes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Implemented RFCs
5656
.. _RFC 51: https://amaranth-lang.org/rfcs/0051-const-from-bits.html
5757
.. _RFC 53: https://amaranth-lang.org/rfcs/0053-ioport.html
5858
.. _RFC 55: https://amaranth-lang.org/rfcs/0055-lib-io.html
59+
.. _RFC 58: https://amaranth-lang.org/rfcs/0058-valuecastable-format.html
5960
.. _RFC 59: https://amaranth-lang.org/rfcs/0059-no-domain-upwards-propagation.html
6061
.. _RFC 62: https://amaranth-lang.org/rfcs/0062-memory-data.html
6162

@@ -68,6 +69,7 @@ Implemented RFCs
6869
* `RFC 50`_: ``Print`` statement and string formatting
6970
* `RFC 51`_: Add ``ShapeCastable.from_bits`` and ``amaranth.lib.data.Const``
7071
* `RFC 53`_: Low-level I/O primitives
72+
* `RFC 58`_: Core support for ``ValueCastable`` formatting
7173
* `RFC 59`_: Get rid of upwards propagation of clock domains
7274
* `RFC 62`_: The `MemoryData`` class
7375

docs/amaranth/latest/contrib.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Contributing &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Contributing &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -40,7 +40,7 @@
4040
<img src="_static/logo.png" class="logo" alt="Logo"/>
4141
</a>
4242
<div class="version">
43-
0.5.0.dev213+gf21d3d0
43+
0.5.0.dev214+g0e6d802
4444
</div>
4545
<div role="search">
4646
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">

docs/amaranth/latest/cover.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Amaranth project documentation &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Amaranth project documentation &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -40,7 +40,7 @@
4040
<img src="_static/logo.png" class="logo" alt="Logo"/>
4141
</a>
4242
<div class="version">
43-
0.5.0.dev213+gf21d3d0
43+
0.5.0.dev214+g0e6d802
4444
</div>
4545
<div role="search">
4646
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">

docs/amaranth/latest/genindex.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Index &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
6+
<title>Index &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
77
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
88
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
99
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -16,7 +16,7 @@
1616

1717
<script src="_static/jquery.js?v=5d32c60e"></script>
1818
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
19-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
19+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2020
<script src="_static/doctools.js?v=888ff710"></script>
2121
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2222
<script src="_static/platformpicker.js"></script>
@@ -38,7 +38,7 @@
3838
<img src="_static/logo.png" class="logo" alt="Logo"/>
3939
</a>
4040
<div class="version">
41-
0.5.0.dev213+gf21d3d0
41+
0.5.0.dev214+g0e6d802
4242
</div>
4343
<div role="search">
4444
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
@@ -871,6 +871,8 @@ <h2 id="F">F</h2>
871871
<li><a href="stdlib/wiring.html#amaranth.lib.wiring.Member.flow">flow (amaranth.lib.wiring.Member property)</a>
872872
</li>
873873
<li><a href="stdlib/wiring.html#amaranth.lib.wiring.Flow">Flow (class in amaranth.lib.wiring)</a>
874+
</li>
875+
<li><a href="reference.html#amaranth.hdl.ShapeCastable.format">format() (amaranth.hdl.ShapeCastable method)</a>
874876
</li>
875877
<li><a href="reference.html#amaranth.hdl.ShapeCastable.from_bits">from_bits() (amaranth.hdl.ShapeCastable method)</a>
876878

docs/amaranth/latest/guide.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Language guide &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Language guide &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -41,7 +41,7 @@
4141
<img src="_static/logo.png" class="logo" alt="Logo"/>
4242
</a>
4343
<div class="version">
44-
0.5.0.dev213+gf21d3d0
44+
0.5.0.dev214+g0e6d802
4545
</div>
4646
<div role="search">
4747
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">

docs/amaranth/latest/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Language &amp; toolchain &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Language &amp; toolchain &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -41,7 +41,7 @@
4141
<img src="_static/logo.png" class="logo" alt="Logo"/>
4242
</a>
4343
<div class="version">
44-
0.5.0.dev213+gf21d3d0
44+
0.5.0.dev214+g0e6d802
4545
</div>
4646
<div role="search">
4747
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">

docs/amaranth/latest/install.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Installation &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Installation &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -41,7 +41,7 @@
4141
<img src="_static/logo.png" class="logo" alt="Logo"/>
4242
</a>
4343
<div class="version">
44-
0.5.0.dev213+gf21d3d0
44+
0.5.0.dev214+g0e6d802
4545
</div>
4646
<div role="search">
4747
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">

docs/amaranth/latest/intro.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Introduction &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Introduction &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -41,7 +41,7 @@
4141
<img src="_static/logo.png" class="logo" alt="Logo"/>
4242
</a>
4343
<div class="version">
44-
0.5.0.dev213+gf21d3d0
44+
0.5.0.dev214+g0e6d802
4545
</div>
4646
<div role="search">
4747
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">

docs/amaranth/latest/objects.inv

3 Bytes
Binary file not shown.

docs/amaranth/latest/platform.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Platform integration &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Platform integration &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="_static/doctools.js?v=888ff710"></script>
2222
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="_static/platformpicker.js"></script>
@@ -41,7 +41,7 @@
4141
<img src="_static/logo.png" class="logo" alt="Logo"/>
4242
</a>
4343
<div class="version">
44-
0.5.0.dev213+gf21d3d0
44+
0.5.0.dev214+g0e6d802
4545
</div>
4646
<div role="search">
4747
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">

docs/amaranth/latest/platform/altera.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Altera &mdash; Amaranth language &amp; toolchain 0.5.0.dev213 documentation</title>
7+
<title>Altera &mdash; Amaranth language &amp; toolchain 0.5.0.dev214 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../_static/platformpicker.css" />
@@ -17,7 +17,7 @@
1717

1818
<script src="../_static/jquery.js?v=5d32c60e"></script>
1919
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=910f4163"></script>
20+
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=5a86d1ae"></script>
2121
<script src="../_static/doctools.js?v=888ff710"></script>
2222
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
2323
<script src="../_static/platformpicker.js"></script>
@@ -41,7 +41,7 @@
4141
<img src="../_static/logo.png" class="logo" alt="Logo"/>
4242
</a>
4343
<div class="version">
44-
0.5.0.dev213+gf21d3d0
44+
0.5.0.dev214+g0e6d802
4545
</div>
4646
<div role="search">
4747
<form id="rtd-search-form" class="wy-form" action="../search.html" method="get">

0 commit comments

Comments
 (0)