adjusted pull up channel names

This commit is contained in:
alexmadison
2022-04-20 19:31:06 +02:00
parent bb63182694
commit 83ae6a4cc3
2 changed files with 15 additions and 16 deletions

View File

@ -52,7 +52,6 @@ N_MON_AMZO_PER_SYN, N_MON_AMZO_PER_NRN, // Number of signals that each synapse o
N_FLAGS_PER_SYN, N_FLAGS_PER_NRN, // Number of signals that each nrn/syn recieves from the register.
N_BUFFERS,
N_LINE_PD_DLY, // Number of dummy delays to add line pull down
// N_BD_DLY_CFG, N_BD_DLY_CFG2,
REG_NCA, REG_NCW, REG_M>
defproc texel_core (avMx1of2<N_IN> in, out;
@ -108,8 +107,9 @@ defproc texel_core (avMx1of2<N_IN> in, out;
decoder_2d_synapse_hs<N_SYN_X, N_SYN_Y> _synapses(
.synapses = synapses,
.in_req_x = decoder.out_req_x, .in_req_y = decoder.out_req_y,
.in_ackB_pullups = decoder.out_ackB_pullups,
.out_req_x_pullups = decoder.in_req_x_pullups,
.to_pu = decoder.to_pu,
// .in_ackB_pullups = decoder.out_ackB_pullups,
// .out_req_x_pullups = decoder.in_req_x_pullups,
.out_ackB_decoder = decoder.in_ackB_decoder,
.supply = supply);
@ -118,6 +118,8 @@ defproc texel_core (avMx1of2<N_IN> in, out;
NC_NRN = NC_NRN_X + NC_NRN_Y;
encoder2d_simple<NC_NRN_X, NC_NRN_Y, N_NRN_X, N_NRN_Y, N_LINE_PD_DLY> encoder(
.reset_B = _reset_BX, .supply = supply);
fifo<NC_NRN, N_BUFFERS> fifo_enc2mrg(.in = encoder.out,
.reset_B = _reset_BX, .supply = supply);
// Neuron handshake circuits, to be removed for innovus
nrn_hs_2d_array<N_NRN_X,N_NRN_Y> nrn_grid(.in = neurons,
@ -126,9 +128,6 @@ defproc texel_core (avMx1of2<N_IN> in, out;
.supply = supply, .reset_B = _reset_BX);
fifo<NC_NRN, N_BUFFERS> fifo_enc2mrg(.in = encoder.out,
.reset_B = _reset_BX, .supply = supply);
// Merge
append<NC_NRN, N_IN-NC_NRN, 0> append_enc(.in = fifo_enc2mrg.out, .supply = supply);