| 1 |
57 |
robfinch |
// ============================================================================
|
| 2 |
|
|
// __
|
| 3 |
|
|
// \\__/ o\ (C) 2020 Robert Finch, Waterloo
|
| 4 |
|
|
// \ __ / All rights reserved.
|
| 5 |
|
|
// \/_// robfinch@finitron.ca
|
| 6 |
|
|
// ||
|
| 7 |
|
|
//
|
| 8 |
|
|
// DPDDecode.sv
|
| 9 |
|
|
//
|
| 10 |
|
|
// An encoding described in:
|
| 11 |
|
|
// Densely Packed Decimal Encoding, by Mike Cowlishaw, in
|
| 12 |
|
|
// IEE Proceedings – Computers and Digital Techniques, ISSN 1350-2387,
|
| 13 |
|
|
// Vol. 149, No. 3, pp102–104, IEE, May 2002
|
| 14 |
|
|
//
|
| 15 |
|
|
// See: http://speleotrove.com/decimal/DPDecimal.html
|
| 16 |
|
|
//
|
| 17 |
|
|
// BSD 3-Clause License
|
| 18 |
|
|
// Redistribution and use in source and binary forms, with or without
|
| 19 |
|
|
// modification, are permitted provided that the following conditions are met:
|
| 20 |
|
|
//
|
| 21 |
|
|
// 1. Redistributions of source code must retain the above copyright notice, this
|
| 22 |
|
|
// list of conditions and the following disclaimer.
|
| 23 |
|
|
//
|
| 24 |
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice,
|
| 25 |
|
|
// this list of conditions and the following disclaimer in the documentation
|
| 26 |
|
|
// and/or other materials provided with the distribution.
|
| 27 |
|
|
//
|
| 28 |
|
|
// 3. Neither the name of the copyright holder nor the names of its
|
| 29 |
|
|
// contributors may be used to endorse or promote products derived from
|
| 30 |
|
|
// this software without specific prior written permission.
|
| 31 |
|
|
//
|
| 32 |
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
| 33 |
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
| 34 |
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
| 35 |
|
|
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
| 36 |
|
|
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
| 37 |
|
|
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
| 38 |
|
|
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
| 39 |
|
|
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
| 40 |
|
|
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| 41 |
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| 42 |
|
|
//
|
| 43 |
|
|
// ============================================================================
|
| 44 |
|
|
|
| 45 |
|
|
module DPDDecode(i, o);
|
| 46 |
|
|
input [9:0] i;
|
| 47 |
|
|
output [11:0] o;
|
| 48 |
|
|
|
| 49 |
|
|
wire a,b,c,d,e,f,g,h,ii,j,k,m;
|
| 50 |
|
|
wire y,x,w,v,u,t,s,r,q,p;
|
| 51 |
|
|
|
| 52 |
|
|
assign {p,q,r,s,t,u,v,w,x,y} = i;
|
| 53 |
|
|
|
| 54 |
|
|
assign a = (v & w) & (~s | t | ~x);
|
| 55 |
|
|
assign b = p & (~v | ~w | (s & ~t & x));
|
| 56 |
|
|
assign c = q & (~v | ~w | (s & ~t & x));
|
| 57 |
|
|
assign d = r;
|
| 58 |
|
|
assign e = v & ((~w & x) | (~t & x) | (s & x));
|
| 59 |
|
|
assign f = (s & (~v | ~x)) | (p & ~s & t & v & w & x);
|
| 60 |
|
|
assign g = (t & (~v | ~x)) | (q & ~s & t & w);
|
| 61 |
|
|
assign h = u;
|
| 62 |
|
|
assign ii = v & ((~w & ~x) | (w & x & (s | t)));
|
| 63 |
|
|
assign j = (~v & w) | (s & v & ~w & x) | (p & w & (~x | (~s & ~t)));
|
| 64 |
|
|
assign k = (~v & x) | (t & ~w & x) | (q & v & w & (~x | (~s & ~t)));
|
| 65 |
|
|
assign m = y;
|
| 66 |
|
|
|
| 67 |
|
|
assign o = {a,b,c,d,e,f,g,h,ii,j,k,m};
|
| 68 |
|
|
|
| 69 |
|
|
endmodule
|
| 70 |
|
|
|
| 71 |
|
|
module DPDDecodeN(i, o);
|
| 72 |
|
|
parameter N=11;
|
| 73 |
|
|
input [N*10-1:0] i;
|
| 74 |
|
|
output [N*12-1:0] o;
|
| 75 |
|
|
|
| 76 |
|
|
genvar g;
|
| 77 |
|
|
|
| 78 |
|
|
generate begin : gDPD
|
| 79 |
|
|
for (g = 0; g < N; g = g + 1)
|
| 80 |
|
|
DPDDecode u1 (i[g*10+9:g*10], o[g*12+11:g*12]);
|
| 81 |
|
|
end
|
| 82 |
|
|
endgenerate
|
| 83 |
|
|
|
| 84 |
|
|
endmodule
|