From c10086e33e6e6433f9bf10eee03f58cf06b67f23 Mon Sep 17 00:00:00 2001 From: Minos Galanakis Date: Fri, 10 Dec 2021 15:51:06 +0000 Subject: [PATCH] changelog: Addressed review comments #6 Signed-off-by: Minos Galanakis --- ChangeLog.d/twos_complement_representation.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ChangeLog.d/twos_complement_representation.txt diff --git a/ChangeLog.d/twos_complement_representation.txt b/ChangeLog.d/twos_complement_representation.txt new file mode 100644 index 0000000000..fa49859abc --- /dev/null +++ b/ChangeLog.d/twos_complement_representation.txt @@ -0,0 +1,3 @@ +Requirement changes + * Sign-magnitude and one's complement representations for signed integers are + not supported. Two's complement is the only supported representation.