From 4dde429efe28268b3c575dfd62777a3e3cfb1b38 Mon Sep 17 00:00:00 2001 From: Matheus Cavalcante Date: Thu, 25 Mar 2021 15:52:41 +0100 Subject: [PATCH 1/2] [apps] :art: Keep clang-format from formatting assembly header file --- apps/common/riscv_test.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/common/riscv_test.h b/apps/common/riscv_test.h index 2f0afee63..243fd272b 100644 --- a/apps/common/riscv_test.h +++ b/apps/common/riscv_test.h @@ -1,5 +1,7 @@ // See LICENSE for license details. +// clang-format off + #ifndef _ENV_PHYSICAL_SINGLE_CORE_H #define _ENV_PHYSICAL_SINGLE_CORE_H @@ -131,4 +133,6 @@ _sleep: \ .global end_signature; \ end_signature: +// clang-format on + #endif From 66b22b38202dabc72105fe76a03737ba985be89e Mon Sep 17 00:00:00 2001 From: Matheus Cavalcante Date: Thu, 25 Mar 2021 15:55:48 +0100 Subject: [PATCH 2/2] [CHANGELOG] Update Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f117a5ba1..4128461bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed - Add a workaround for a Modelsim 2019 bug in the `axi_demux` +- Keep clang-format from reformatting the `apps/common/riscv_test.h` assembly header file ## 0.1.0 - 2021-03-17 - Initial release.