OpenCores
URL https://opencores.org/ocsvn/i650/i650/trunk

Subversion Repositories i650

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 25 to Rev 26
    Reverse comparison

Rev 25 → Rev 26

/i650/trunk/rtl/tlu.v
5,7 → 5,7
// This file is part of the IBM 650 Reconstruction in Verilog (i650) project
// http:////www.opencores.org/project,i650
//
// Description: Table lookup.
// Description: Table look-up.
//
// Additional Comments: See US 2959351, Fig. 86.
//
29,7 → 29,7
//////////////////////////////////////////////////////////////////////////////////
`include "defines.v"
 
module tlu(
module tlu (
input rst,
input ap, bp,
input dx, d0, d4, d5, d10,
163,9 → 163,9
always @(posedge bp)
if (rst) begin
prog_ped_regen_latch <= 0;
end else if (~prog_add_on_p)
end else if (~prog_add_on_p) begin
prog_ped_regen_latch <= 0;
end else if (wp) begin
end else if (dx) begin
prog_ped_regen_latch <= 1;
end;
181,7 → 181,7
always @(posedge ap)
if (rst) begin
tlu_carry <= 0;
end else if (edx) begin
end else if (dx) begin
tlu_carry <= tlu_control & (carry_test_latch | tlu_or_acc_zero_check);
end;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.