Forum Discussion
Altera_Forum
Honored Contributor
11 years ago --- Quote Start --- You might try changing the \ to \\ or /. \ is an escape character in a Verilog string. --- Quote End --- You nailed it right on the head! I changed the code from:
$readmemb("C:\Users\jbrookley\Desktop\EECS X497.2\Week 5\Q2\w5q2tv.tv",testvectors); to: $readmemb("C:/Users/jbrookley/Desktop/EECS X497.2/Week 5/Q2/w5q2tv.tv",testvectors); Everything is working great now. Thanks!