Skip to content

Commit

Permalink
Add palmcm.v (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
palmcm authored Oct 24, 2022
1 parent 15fda7e commit 6910f02
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Verilog/palmcm.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module main;
reg [47:0] coffee = "Coffee";
initial
begin
coffee[8] = 0;
coffee = {coffee[47:32], coffee[15:0]};
$display("%s", coffee);
$finish ;
end
endmodule

0 comments on commit 6910f02

Please sign in to comment.