| 1 |
9 |
eightycc |
`timescale 1ns / 1ps
|
| 2 |
|
|
//////////////////////////////////////////////////////////////////////////////////
|
| 3 |
|
|
// IBM 650 Reconstruction in Verilog (i650)
|
| 4 |
|
|
//
|
| 5 |
|
|
// This file is part of the IBM 650 Reconstruction in Verilog (i650) project
|
| 6 |
|
|
// http:////www.opencores.org/project,i650
|
| 7 |
|
|
//
|
| 8 |
|
|
// Description: Translate bi-quinary to 2-of-5 drum code.
|
| 9 |
|
|
//
|
| 10 |
|
|
// Additional Comments:
|
| 11 |
|
|
//
|
| 12 |
|
|
// Copyright (c) 2015 Robert Abeles
|
| 13 |
|
|
//
|
| 14 |
|
|
// This source file is free software; you can redistribute it
|
| 15 |
|
|
// and/or modify it under the terms of the GNU Lesser General
|
| 16 |
|
|
// Public License as published by the Free Software Foundation;
|
| 17 |
|
|
// either version 2.1 of the License, or (at your option) any
|
| 18 |
|
|
// later version.
|
| 19 |
|
|
//
|
| 20 |
|
|
// This source is distributed in the hope that it will be
|
| 21 |
|
|
// useful, but WITHOUT ANY WARRANTY; without even the implied
|
| 22 |
|
|
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
| 23 |
|
|
// PURPOSE. See the GNU Lesser General Public License for more
|
| 24 |
|
|
// details.
|
| 25 |
|
|
//
|
| 26 |
|
|
// You should have received a copy of the GNU Lesser General
|
| 27 |
|
|
// Public License along with this source; if not, download it
|
| 28 |
|
|
// from http://www.opencores.org/lgpl.shtml
|
| 29 |
|
|
//////////////////////////////////////////////////////////////////////////////////
|
| 30 |
|
|
`include "defines.v"
|
| 31 |
|
|
|
| 32 |
|
|
module xlate7to5(
|
| 33 |
|
|
input [0:6] in_7,
|
| 34 |
|
|
output reg[0:4] out_5
|
| 35 |
|
|
);
|
| 36 |
|
|
|
| 37 |
|
|
always @(*) begin
|
| 38 |
|
|
case (in_7)
|
| 39 |
|
|
`biq_0 : out_5 = `drum2of5_0;
|
| 40 |
|
|
`biq_1 : out_5 = `drum2of5_1;
|
| 41 |
|
|
`biq_2 : out_5 = `drum2of5_2;
|
| 42 |
|
|
`biq_3 : out_5 = `drum2of5_3;
|
| 43 |
|
|
`biq_4 : out_5 = `drum2of5_4;
|
| 44 |
|
|
`biq_5 : out_5 = `drum2of5_5;
|
| 45 |
|
|
`biq_6 : out_5 = `drum2of5_6;
|
| 46 |
|
|
`biq_7 : out_5 = `drum2of5_7;
|
| 47 |
|
|
`biq_8 : out_5 = `drum2of5_8;
|
| 48 |
|
|
`biq_9 : out_5 = `drum2of5_9;
|
| 49 |
|
|
default : out_5 = `drum2of5_blank; // invalid codes become zeroes
|
| 50 |
|
|
endcase;
|
| 51 |
|
|
end;
|
| 52 |
|
|
endmodule
|