cwonb
New Contributor
6 years agoCan't make 'Altera PLL'
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