URL
https://opencores.org/ocsvn/pss/pss/trunk
Subversion Repositories pss
[/] [pss/] [trunk/] [pss/] [hdl/] [pss/] [zpu_uc/] [zpu_core/] [zpu_core_stub.v] - Rev 7
Compare with Previous | Blame | View Log
module zpu_core_stub ( input clk, input sreset, input enable, output cpu_present, output [31:0] pc_bo, output mem_req, output mem_we, input mem_ack, input [31:0] mem_read, output [31:0] mem_write, output [31:0] out_mem_addr, output [3:0] mem_writeMask, input interrupt, output interrupt_ack, output break_o, output [63:0] zpu_status ); assign cpu_present = 1'b0; assign pc_bo = 32'h0; assign mem_req = 1'b0; assign mem_we = 1'bx; assign mem_write = 32'hx; assign out_mem_addr = 32'hx; assign mem_writeMask = 4'h0; assign interrupt_ack = interrupt; assign break_o = 1'b0; assign zpu_status = 64'h0; endmodule