ppTests rm missed expected

This commit is contained in:
damc 2022-07-21 13:11:00 +02:00
parent f4554b062c
commit 6f752c4cda
2 changed files with 0 additions and 17 deletions

View File

@ -1,10 +0,0 @@
module a;
`define HI Hello
`define LO "`HI, world"
`define H(x) "Hello, x"
initial begin
$display("`HI, world");
$display("`HI, world" );
$display("Hello, x" );
end
endmodule

View File

@ -1,7 +0,0 @@
`define msg(x,y) `"x: `\`"y`\`"`"
module a;
initial begin
$display("left side: \"right side\"" );
end
endmodule