-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
FA.v
53 lines (45 loc) · 1.25 KB
/
FA.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2020 Akilesh Kannan <[email protected]>
//
// File: FA.v
// Modified: 2020-07-16
// Description: 1-Bit Full Adder module
// - Uses primitives for sum and carry outputs
//
// License: MIT
//
////////////////////////////////////////////////////////////////////////
`default_nettype None
`timescale 1ns/1ps
primitive carryOut (output Cout, input A, input B, input Cin);
// Truth Table for carry out
table
// A B Cin Cout
1 1 ? : 1 ;
1 ? 1 : 1 ;
? 1 1 : 1 ;
0 0 ? : 0 ;
0 ? 0 : 0 ;
? 0 0 : 0 ;
endtable
endprimitive
primitive sumOut (output sum, input A, input B, input Cin);
// Truth Table for sum
table
// A B Cin sum
1 1 1 : 1 ;
1 0 0 : 1 ;
0 1 0 : 1 ;
0 0 1 : 1 ;
0 0 0 : 0 ;
0 1 1 : 0 ;
1 0 1 : 0 ;
1 1 0 : 0 ;
endtable
endprimitive
module FA(output Cout, output sum, input A, input B, input Cin);
// instantiating sum and carry primitives
sumOut s(sum, A, B, Cin);
carryOut co(Cout, A, B, Cin);
endmodule