You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Posted this question in the morty project pulp-platform/morty#39 , but probably is more related to this project.
Is it possible to add support for in-order/global defines?
#mydefines.sv:
// This would take presedence until undef, or new value defined by a file that is compiled later
`define DW=32
#mymodule.sv
// Define from previous compiles are available, unless undef. Requires control of compilation order.
module mymodule (
input [`DW-1:0] data
);
endmodule
morty mydefine.sv mymodule.sv
The text was updated successfully, but these errors were encountered:
Posted this question in the morty project pulp-platform/morty#39 , but probably is more related to this project.
Is it possible to add support for in-order/global defines?
#mydefines.sv:
#mymodule.sv
morty mydefine.sv mymodule.sv
The text was updated successfully, but these errors were encountered: