Skip to content

Commit

Permalink
break build on purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtaylor1982 committed Aug 30, 2023
1 parent ab67c94 commit 1136705
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RTL/RESDMAC.v
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ assign DATA_IO = DATA_OE_ ? DATA_O : 32'hzzzzzzzz;
wire [15:0] PDATA_I;
wire [15:0] PDATA_O;
assign PDATA_I = PD_PORT;
assign PD_PORT = ~_IOW ? PDATA_O : 16'hzzzz;
assign PD_PORT = _IOW ? 16'hzzzz: PDATA_O;


reg LLW;
Expand Down Expand Up @@ -385,7 +385,7 @@ assign A3 = ADDR[3];

assign PDATA_OE_ = (_DACK & _CSS);

assign BnDS_O_ = ~DS_O_;
assign BnDS_O_ = ~DS_O_
assign INT = ~_INT;

endmodule
Expand Down

0 comments on commit 1136705

Please sign in to comment.