- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I want to make Altera PLL by MegaWizard. But the Finish button is disabled.
Here's the error message:
Error: altera_pll: Could not create a temporary work directory
Error: altera_pll: Please make sure that one of TMP, TEMP or HOME environment variables is set and that the directory is writable
It was run as an administrator, but same situation..
I use Quartus II 15.0 and Cyclone V(De1-Soc)
module simple_counter (
CLOCK_50,
counter_out
);
input CLOCK_50;
output reg [31:0] counter_out;
always @ (posedge CLOCK_50)
begin
counter_out <= #1 counter_out+1; // increase counter
end
endmodule
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
-
Have you solved it now? I have the same problem
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page