mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-01-28 04:37:12 +00:00
[Plus Too] removed unused files
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
module ramAdapter(
|
||||
// CPU interface
|
||||
input clk8,
|
||||
input [20:0] addr, // word address
|
||||
output [15:0] dataOut,
|
||||
input _OE,
|
||||
input _CS,
|
||||
input _UDS,
|
||||
input _LDS,
|
||||
|
||||
// external interface to 8-bit Flash
|
||||
output [21:0] flashAddr, // byte address
|
||||
input [7:0] flashData,
|
||||
output flashCE,
|
||||
output flashOE
|
||||
);
|
||||
|
||||
endmodule
|
||||
@@ -1,27 +0,0 @@
|
||||
module sdcard(
|
||||
input clk8,
|
||||
input _reset,
|
||||
input selectIWM
|
||||
);
|
||||
|
||||
spiMaster sdcard_intf(
|
||||
// host interface
|
||||
.clk_i(clk8),
|
||||
.rst_i(),
|
||||
.address_i(), // input [7:0]
|
||||
.data_i(), // input [7:0]
|
||||
.data_o(), // output [7:0]
|
||||
.strobe_i(), // input
|
||||
.we_i(), // input
|
||||
.ack_o(), // output
|
||||
|
||||
// SPI logic clock
|
||||
spiSysClk(),
|
||||
|
||||
//SPI bus
|
||||
spiClkOut(),
|
||||
spiDataIn(),
|
||||
spiDataOut(),
|
||||
spiCS_n());
|
||||
|
||||
endmodule
|
||||
Reference in New Issue
Block a user