From 0d7097d9069b6f8faf467efd2a08b569fe8a52fd Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sun, 21 Jun 2026 01:36:44 +0200 Subject: [PATCH 1/3] Bumped GitHub Action dependencies. --- .github/workflows/Simulate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Simulate.yml b/.github/workflows/Simulate.yml index 368c6146f..a6398d927 100644 --- a/.github/workflows/Simulate.yml +++ b/.github/workflows/Simulate.yml @@ -119,7 +119,7 @@ jobs: continue-on-error: ${{ inputs.can-fail }} steps: - name: ⏬ Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true submodules: true @@ -222,7 +222,7 @@ jobs: continue-on-error: ${{ inputs.can-fail }} steps: - name: ⏬ Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true submodules: true @@ -342,7 +342,7 @@ jobs: continue-on-error: ${{ inputs.can-fail }} steps: - name: ⏬ Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true submodules: true From 6af340db2a01dbcdb0f1d6c195d54e1c75dcf6f1 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sun, 21 Jun 2026 01:39:58 +0200 Subject: [PATCH 2/3] Updated Unicode font and LuaLaTeX usage. --- docs/conf.py | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 9765a19ec..fe344c3a3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -163,24 +163,13 @@ def _LatestTagName(): latex_elements = { "papersize": "a4paper", # The paper size ('letterpaper' or 'a4paper'). "pointsize": "10pt", # The font size ('10pt', '11pt' or '12pt'). - "inputenc": "", # Let LuaLaTeX handle input encoding + "inputenc": "", # Let LuaLaTeX handle input encoding "utf8extra": "", "polyglossia": "", "babel": r"\usepackage[english]{babel}", "fontenc": r"\usepackage{fontspec}", # Disable the default T1 font encoding (Essential for LuaLaTeX) "fontpkg": dedent("""\ - \\usepackage{unicode-math} - - % Set the Text Fonts (Libertinus) - \\setmainfont{Libertinus Serif} - \\setsansfont{Libertinus Sans} - \\setmonofont{Libertinus Mono} - \\setmathfont{Libertinus Math} - - % Set Symbol font - \\usepackage{newunicodechar} - \\newfontfamily{\\emojifont}[Renderer=OpenType]{NotoColorEmoji.ttf} - \\usepackage{pytooling} + \\usepackage[fontfamily=libertinus]{pytooling} """), "passoptionstopackages": dedent("""\ \\PassOptionsToPackage{verbatimvisiblespace=\\ }{sphinx} From f4d2e1605133fd4c45028170f04910bac2693dff Mon Sep 17 00:00:00 2001 From: "adrian.weiland" Date: Wed, 24 Jun 2026 15:38:42 +0200 Subject: [PATCH 3/3] initialize axi4 sink signals --- src/bus/axi4/axi4_Sink.vhdl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bus/axi4/axi4_Sink.vhdl b/src/bus/axi4/axi4_Sink.vhdl index 4791614f8..cd5e0435e 100644 --- a/src/bus/axi4/axi4_Sink.vhdl +++ b/src/bus/axi4/axi4_Sink.vhdl @@ -95,13 +95,13 @@ architecture rtl of axi4_Sink is signal nxt_wstate : T_wstate; signal nxt_rstate : T_rstate; - signal AWLen_d : std_logic_vector(7 downto 0); + signal AWLen_d : std_logic_vector(7 downto 0) := (others => '0'); signal AWLen : std_logic_vector(7 downto 0); - signal ARLen_d : std_logic_vector(7 downto 0); + signal ARLen_d : std_logic_vector(7 downto 0) := (others => '0'); signal ARLen : std_logic_vector(7 downto 0); - signal AWID_d : std_logic_vector(IDBits - 1 downto 0); + signal AWID_d : std_logic_vector(IDBits - 1 downto 0) := (others => '0'); signal AWID : std_logic_vector(IDBits - 1 downto 0); - signal ARID_d : std_logic_vector(IDBits - 1 downto 0); + signal ARID_d : std_logic_vector(IDBits - 1 downto 0) := (others => '0'); signal ARID : std_logic_vector(IDBits - 1 downto 0); signal Is_WriteData : std_logic;