fix awful c-flag bug in Memory.ship
[fleet.git] / ships / Counter.ship
1 ship: Counter
2
3 == Ports ===========================================================
4 data  in:   in1
5 data  in:   in2
6 data  in:   inOp
7   constant REPEAT_C1_V1: 0
8   constant REPEAT_C1_V2: 1
9   constant REPEAT_C2_V1: 2
10   constant REPEAT_C2_V2: 3
11   constant PASS_C1_V1:   4
12   constant PASS_C1_V2:   5
13   constant PASS_C2_V1:   6
14   constant PASS_C2_V2:   7
15   constant DROP_C1_V1:   8
16   constant DROP_C1_V2:   9
17   constant DROP_C2_V1:   10
18   constant DROP_C2_V2:   11
19   constant COUNT:        12
20 data  out:  out
21
22 == Fleeterpreter ====================================================
23 public void service() { }
24
25 == FleetSim ==============================================================
26
27 == FPGA ==============================================================
28
29   wire [3:0]              inOp_d_trunc;
30   assign                  inOp_d_trunc = inOp_d[3:0];
31
32   reg [`WORDWIDTH-1:0] temp;
33   initial temp   = {`WORDWIDTH{1'b1}};
34   reg     full;
35   initial full = 0;
36   wire    op_count;  assign op_count  = inOp_d_trunc==12;
37   wire    op_repeat; assign op_repeat = inOp_d[3:2]==0;
38   wire    op_pass;   assign op_pass   = inOp_d[3:2]==1;
39   wire    op_drop;   assign op_drop   = inOp_d[3:2]==2;
40   wire    op_c1;     assign op_c1     = (op_repeat || op_pass || op_drop) && !inOp_d[1];
41   wire    op_c2;     assign op_c2     = (op_repeat || op_pass || op_drop) &&  inOp_d[1];
42   wire    op_v1;     assign op_v1     = (op_repeat || op_pass || op_drop) && !inOp_d[0];
43   wire    op_v2;     assign op_v2     = (op_repeat || op_pass || op_drop) &&  inOp_d[0];
44   assign  out_d_ = op_v1 ? in1_d : op_v2 ? in2_d : temp;
45
46   // FIXME: REPEAT with a count of zero will not work properly
47
48   always @(posedge clk) begin
49     if (!rst) begin
50       `reset
51       full <= 0;
52     end else begin
53       `flush
54       `cleanup
55       if (`inOp_empty)         full   <= 0;
56       if (`out_draining) begin
57         if (op_count) temp   <= temp - in2_d;
58         else          temp   <= temp - 1;
59         if (op_pass && op_v1) `drain_in1
60         if (op_pass && op_v2) `drain_in2
61       end else if (`inOp_full) begin
62         if (!full) begin
63           if (op_count && `in1_full && `in2_full) begin
64             temp  <= in1_d[`WORDWIDTH-1:0] - in2_d[`WORDWIDTH-1:0];
65             `drain_in1
66             full  <= 1;
67           end else if (op_c1 && `in1_full) begin
68             temp  <= in1_d[`WORDWIDTH-1:0]-1;
69             `drain_in1
70             full  <= 1;
71           end else if (op_c2 && `in2_full) begin
72             temp  <= in2_d[`WORDWIDTH-1:0]-1;
73             `drain_in2
74             full  <= 1;
75           end
76         end else if (temp[`WORDWIDTH-1]) begin
77           full <= 0;
78           `drain_inOp
79           if (op_count) begin
80             `drain_in2
81           end else if (op_repeat && op_v1) begin
82             `drain_in1
83           end else if (op_repeat && op_v2) begin
84             `drain_in2
85           end
86         end else if (`out_empty) begin
87           if (op_count) begin
88             `fill_out
89           end else if (op_v1 && `in1_full) begin
90             if (op_drop)    begin `drain_in1 temp <= temp-1; end
91             else            `fill_out
92           end else if (op_v2 && `in2_full) begin
93             if (op_drop)    begin `drain_in2 temp <= temp-1; end
94             else            `fill_out
95           end
96         end
97       end
98     end
99   end
100
101 == Test =================================================================
102
103 #ship counter : Counter
104 #ship debug   : Debug
105
106 #expect 6
107 #expect 3
108 #expect 0
109 #expect 2
110 #expect 1
111 #expect 0
112 #expect 2
113 #expect 2
114 #expect 2
115 #expect 2
116 #expect 9
117 #expect 9
118 #expect 9
119
120 debug.in:
121   set ilc=*;
122   recv, deliver;
123
124 counter.in1:
125   set word=9;
126   deliver;
127   set word=3;
128   deliver;
129   set word=4;
130   deliver;
131   set word=3;
132   deliver;
133
134 counter.in2:
135   set word=3;
136   deliver;
137   set word=1;
138   deliver;
139   set word=2;
140   deliver;
141   set word=9;
142   deliver;
143
144 counter.inOp:
145   set word=12;
146   deliver;
147   deliver;
148   set word=1;
149   deliver;
150   deliver;
151
152 counter.out:
153   set ilc=*;
154   collect, send to debug.in;
155
156
157 == Contributors =========================================================
158 Adam Megacz <megacz@cs.berkeley.edu>