mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-07 16:28:40 -08:00
pcie: Rename enable to en in PCIe US AXI lite master
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
@@ -36,7 +36,7 @@ module taxi_pcie_us_axil_master
|
||||
* Configuration
|
||||
*/
|
||||
input wire logic [15:0] completer_id,
|
||||
input wire logic completer_id_enable,
|
||||
input wire logic completer_id_en,
|
||||
|
||||
/*
|
||||
* Status
|
||||
@@ -262,7 +262,7 @@ always_comb begin
|
||||
cpl_tlp_hdr[63:48] = requester_id_reg;
|
||||
cpl_tlp_hdr[71:64] = tag_reg;
|
||||
cpl_tlp_hdr[87:72] = completer_id;
|
||||
cpl_tlp_hdr[88] = completer_id_enable;
|
||||
cpl_tlp_hdr[88] = completer_id_en;
|
||||
cpl_tlp_hdr[91:89] = tc_reg;
|
||||
cpl_tlp_hdr[94:92] = attr_reg;
|
||||
cpl_tlp_hdr[95] = 1'b0; // force ECRC
|
||||
|
||||
@@ -124,7 +124,7 @@ class TB(object):
|
||||
self.axil_ram = AxiLiteRam(AxiLiteBus.from_entity(dut.m_axil), dut.clk, dut.rst, size=2**16)
|
||||
|
||||
dut.completer_id.setimmediatevalue(0)
|
||||
dut.completer_id_enable.setimmediatevalue(0)
|
||||
dut.completer_id_en.setimmediatevalue(0)
|
||||
|
||||
# monitor error outputs
|
||||
self.stat_err_cor_asserted = False
|
||||
|
||||
@@ -59,7 +59,7 @@ taxi_axil_if #(
|
||||
) m_axil();
|
||||
|
||||
logic [15:0] completer_id;
|
||||
logic completer_id_enable;
|
||||
logic completer_id_en;
|
||||
|
||||
logic stat_err_cor;
|
||||
logic stat_err_uncor;
|
||||
@@ -85,7 +85,7 @@ uut (
|
||||
* Configuration
|
||||
*/
|
||||
.completer_id(completer_id),
|
||||
.completer_id_enable(completer_id_enable),
|
||||
.completer_id_en(completer_id_en),
|
||||
|
||||
/*
|
||||
* Status
|
||||
|
||||
Reference in New Issue
Block a user