nand2/06_IO_Devices/GO.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

19 lines
289 B
Verilog

/**
* 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