X-Git-Url: http://git.joshuawise.com/firearm.git/blobdiff_plain/efd1aa131a0ba07877ba29ada40c3d1d8ca5eea3..c8aae4442c5cc9334970c34f886e2dced6496374:/Memory.v diff --git a/Memory.v b/Memory.v index 221cc77..658e7d2 100644 --- a/Memory.v +++ b/Memory.v @@ -16,6 +16,11 @@ module Memory( output reg [3:0] st_read, input [31:0] st_data, + /* Coprocessor interface */ + output reg cp_req, + input cp_ack, + input cp_busy, + /* stage inputs */ input inbubble, input [31:0] pc, @@ -95,6 +100,7 @@ module Memory( outstall = 1'b0; next_regs = 16'b0; next_started = started; + cp_req = 1'b0; offset = prev_offset; next_outcpsr = started ? out_cpsr : cpsr;