summaryrefslogtreecommitdiff
path: root/graphics/circuit_macros/examples/svg/AdderSVG.m4
blob: cef4d07a8e5897aca9efd141096d85b7177e86f1 (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.PS
# AdderSVG.m4
log_init(svg_font(sans-serif,11bp__))

  del = linewid/4
[                           # full adder using gates
 A: dot; {"A" rjust}; line right
 Xor1: XOR_gate with .In1 at Here
  dy = Xor1.In1.y-Xor1.In2.y
 B: dot(at (A,Xor1.In2)); {"B" rjust}; line to Xor1.In2
  line from Xor1.Out right 2*del+dy
 Xor2: XOR_gate with .In1 at Here

 Co: Autologix(Or(And(X1,X2),And(A,B)),N) with .nw at Xor2.sw+(-del,-del/2)
  line from Co.In1 to (Co.In1,Xor2.In2) then to Xor2.In2
  dot(at (Xor1.Out+(del,0))); line to (Here,Co.In2) then to Co.In2
  dot(at (Xor1.In1-(del,0))); line to (Here,Co.In3) then to Co.In3
  dot(at (Xor1.In2-(del+dy,0))); line to (Here,Co.In4) then to Co.In4
  line right del from Co.Out1; dot; {"Co" ljust }
  dot(at (Here,Xor2.Out)); {"S" ljust}; line to Xor2.Out
 Ci: dot(at (B,(0.5 between Xor2.s and Co.n))); line to (Co.In1,Here); dot
  "Ci" rjust at Ci
 ]

[                           # truth table
  griddim = linewid*0.4
  define(`row',`T: (0,-(`$1')*griddim*0.8)
   Loopover_(`v',`"v" at T; T: T+(griddim,0)', shift($@))')

  [row(0,A,B,Ci,Co,S)]
  line thick 2 color "gray" right 4.5*griddim \
    with .c at last [].c+(0,-griddim/2)

  [row(1,0,0,0,0,0)
   row(2,0,0,1,0,1)
   row(3,0,1,0,0,1)
   row(4,0,1,1,1,0)
   row(5,1,0,0,0,1)
   row(6,0,1,1,0,0)
   row(7,1,1,0,1,0)
   row(8,1,1,1,1,1) ] with .n at last [].c+(0,-griddim)

 ] with .nw at 1st [].ne+(linewid,0)

[                           # cascade of n-bit adders
define(`smarrow',`arrow arrowht*4/5 wid arrowwid*5/4')
define(`nbitadder',
`FlipFlopX(wid 2*linewid fill_(0.9),n-bit adder,
   :, I:;I:;;;I:;I:, I:, O:;;;O: ) `$3'
 `"... "' at last [].Chip.n + (0,arrowht)
 `"... "' at last [].Chip.s - (0,arrowht)
 ifelse(`$1',,,
 `"x`'svg_sub($1)" at last [].N6.end above
  "s`'svg_sub($1)" at last [].S4.end below
  "y`'svg_sub($1)" at last [].N5.end above')
 ifelse(`$2',,,
 `"x`'svg_sub($2)" ljust at 0.5 between last [].N2.end and last [].N1.end above
  "y`'svg_sub($2)" rjust at 0.5 between last [].N2.end and last [].N1.end above
  "s`'svg_sub($2)" at last [].S1.end below ') 
 ')

P: nbitadder(0,n-1)
  {"c`'svg_sub(o)" wid 0.15 at P.E1.end ljust }
  {"c`'svg_sub(n)" at P.W1.end above }
Q: nbitadder(n,2n-1, with .E1.end at P.W1.end)
  smarrow left arrowht from Q.W1.end
  { "... " at Here+(-10pt__,0) }
R: nbitadder(,kn-1, with .E1.end at Here-(20bp__,0))
  smarrow left arrowht from R.W1.end
  {"c`'svg_sub(kn)" wid 0.22 rjust } 


 ] with .nw at 1st [].sw+(0,-0.5)

 command "</g>" # end font
.PE