R
Rob Keiber
Guest
Hi
I get the following error with the code fragment beneath, can anybody
tell me what is wrong?
Error: Subprogram write is "ambigious"
Error: Type error resolving function call: write.
library IEEE;
use IEEE.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use std.textio.all;
....
process(clk)
variable s : line;
begin
...
write(s,"Test 1 - ");
write(s,"\n");
writeline(output,s);
...
Many thanks,
Rob
I get the following error with the code fragment beneath, can anybody
tell me what is wrong?
Error: Subprogram write is "ambigious"
Error: Type error resolving function call: write.
library IEEE;
use IEEE.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use std.textio.all;
....
process(clk)
variable s : line;
begin
...
write(s,"Test 1 - ");
write(s,"\n");
writeline(output,s);
...
Many thanks,
Rob