nand2/06_IO_Devices/GO.v

19 lines
289 B
Coq
Raw Permalink Normal View History

2023-01-11 10:13:09 +00:00
/**
* GO switches from boot to run mode.
*/
`default_nettype none
module GO(
input clk,
input load,
input [15:0] pc,
input [15:0] sram_addr,
output [15:0] SRAM_ADDR,
input [15:0] sram_data,
input [15:0] ROM_data,
output [15:0] instruction
);
// Put your code here:
endmodule