1
0
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:
aap
2019-10-26 16:49:04 +02:00
parent ae97de0446
commit b82dc449b8
89 changed files with 32584 additions and 4947 deletions

13
verilog/fe_req.v Normal file
View 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