mirror of
https://github.com/aap/pdp6.git
synced 2026-02-08 17:31:53 +00:00
fixed emu; new verilog code; fe6 for fpga
This commit is contained in:
13
verilog/fe_req.v
Normal file
13
verilog/fe_req.v
Normal file
@@ -0,0 +1,13 @@
|
||||
module fe_req(
|
||||
// unused
|
||||
input wire clk,
|
||||
input wire reset,
|
||||
|
||||
// requests
|
||||
input wire [31:0] req,
|
||||
|
||||
// Avalon slave
|
||||
output wire [31:0] readdata
|
||||
);
|
||||
assign readdata = req;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user