From 8fd60d09f6f0b63c1b555efbda1242fe9fa39bcc Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 6 May 2025 12:40:25 -0400 Subject: Annex work --- rapport/assets/code/add1bita.tex | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rapport/assets/code/add1bita.tex (limited to 'rapport/assets/code/add1bita.tex') diff --git a/rapport/assets/code/add1bita.tex b/rapport/assets/code/add1bita.tex new file mode 100644 index 0000000..238a6b2 --- /dev/null +++ b/rapport/assets/code/add1bita.tex @@ -0,0 +1,10 @@ +\begin{verbatim} +architecture Behavioral of Add1BitA is + +begin + + O <= (X xor Y) xor Ci; + Co <= ((X xor Y) and Ci) or (X and Y); + +end; +\end{verbatim} -- cgit v1.2.3