Forum Discussion
Altera_Forum
Honored Contributor
17 years agoDuhhh... I was putting it in the wrong place .... should be defined this way:
--- Quote Start --- module my_module ( input ... output ... ); parameter string my_name = "BOB" from {"BOB", "SAM"}; [...] --- Quote End --- Now I need to figure out how to restrict the module instantiation values to predefined values (that I support) and otherwise throw an error... ..dane