Skip to content
Snippets Groups Projects
Commit 00fdc59a authored by ks6n19's avatar ks6n19
Browse files

removed datavalid

parent 0eec49fb
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,6 @@ module ahb_out(
//Non-AHB Signals
output logic [8:0] x1, x2, y1, y2,
output logic DataValid
);
timeunit 1ns;
......
// Example code for an M0 AHBLite System
// Iain McNally
// ECS, University of Soutampton
module arm_soc(
input HCLK, HRESETn,
......@@ -9,7 +8,6 @@ module arm_soc(
input [15:0] Switches,
input [1:0] Buttons,
output logic [8:0] x1, x2, y1, y2,
output DataValid,
output LOCKUP
);
......@@ -94,7 +92,7 @@ timeprecision 100ps;
.HSEL(HSEL_DOUT),
.HRDATA(HRDATA_DOUT), .HREADYOUT(HREADYOUT_DOUT),
.x1(x1), .x2(x2), .y1(y1), .y2(y2), .DataValid(DataValid)
.x1(x1), .x2(x2), .y1(y1), .y2(y2)
);
......
......@@ -17,7 +17,6 @@ simvision {
waveform add -signals arm_soc_stim.x2
waveform add -signals arm_soc_stim.y1
waveform add -signals arm_soc_stim.y2
waveform add -signals arm_soc_stim.DataValid
waveform add -signals arm_soc_stim.LOCKUP
waveform add -signals arm_soc_stim.dut.HADDR
waveform add -signals arm_soc_stim.dut.HWRITE
......
......@@ -7,10 +7,9 @@ timeprecision 100ps;
logic [15:0] Switches;
logic [1:0] Buttons;
logic [8:0] x1,x2,y1,y2;
wire DataValid;
wire LOCKUP;
arm_soc dut(.HCLK, .HRESETn, .x1, .y1, .x2, .y2, .DataValid, .Switches, .Buttons, .LOCKUP);
arm_soc dut(.HCLK, .HRESETn, .x1, .y1, .x2, .y2, .Switches, .Buttons, .LOCKUP);
always
begin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment