![]() |
|
|
|
#1 |
|
Hello,
I wrote a small code, but Quartus doesnt compile it. The error message is: Error (10327): VHDL error at ADR_DEC.vhd(27): can't determine definition of operator ""sll"" -- found 0 possible definitions The code: library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.STD_LOGIC_ARITH.all; use IEEE.STD_LOGIC_UNSIGNED.all; use IEEE.NUMERIC_STD.all; entity ADR_DEC is port(ADR : in STD_LOGIC_VECTOR(2 downto 0); nCS_FPGA: in STD_LOGIC; nCS : out STD_LOGIC_VECTOR(7 downto 0)); end ADR_DEC; architecture BEHAVIOR of ADR_DEC is begin -- DECODER: process(nCS_FPGA) begin if (nCS_FPGA'EVENT and nCS_FPGA= '0') then nCS <= "00000001" sll CONV_INTEGER(ADR); else nCS <= "00000000"; end if; end process DECODER; end BEHAVIOR; Can anybody help me? Thanks Volker Volker |
|
|
|
|
#2 |
|
Posts: n/a
|
Volker wrote:
> I wrote a small code, but Quartus doesnt compile it. The error message is: > Error (10327): VHDL error at ADR_DEC.vhd(27): can't determine definition of > operator ""sll"" -- found 0 possible definitions Nothing will compile it. let's look up numeric_std.sll: -- Id: S.9 function "sll" (ARG : UNSIGNED; COUNT: INTEGER) return UNSIGNED; -- Result subtype: UNSIGNED(ARG'LENGTH-1 downto 0) -- Result: SHIFT_LEFT(ARG, COUNT) -- Id: S.10 function "sll" (ARG : SIGNED; COUNT: INTEGER) return SIGNED; -- Result subtype: SIGNED(ARG'LENGTH-1 downto 0) -- Result: SHIFT_LEFT(ARG, COUNT) Note it's only defined for signed or unsigned. Here's my cut at fixing up your code. There were a few other problems. http://home.comcast.net/~mike_treseler/adr_dec.vhd http://home.comcast.net/~mike_treseler/adr_dec.pdf -- Mike Treseler Mike Treseler |
|
|
|
#3 |
|
Posts: n/a
|
Hi,
Summary: SLL, SRL, SLA, SRA are not defined for std_logic_vector In the Accellera VHDL-2006 revision, SLL and SRL are defined for std_logic_vector. This is an Accellera approved standard, so ask your vendor to implement it. Cheers, Jim > Volker wrote: > >> I wrote a small code, but Quartus doesnt compile it. The error message is: >> Error (10327): VHDL error at ADR_DEC.vhd(27): can't determine definition of >> operator ""sll"" -- found 0 possible definitions > > Nothing will compile it. > let's look up numeric_std.sll: > > -- Id: S.9 > function "sll" (ARG : UNSIGNED; COUNT: INTEGER) return UNSIGNED; > -- Result subtype: UNSIGNED(ARG'LENGTH-1 downto 0) > -- Result: SHIFT_LEFT(ARG, COUNT) > -- Id: S.10 > function "sll" (ARG : SIGNED; COUNT: INTEGER) return SIGNED; > -- Result subtype: SIGNED(ARG'LENGTH-1 downto 0) > -- Result: SHIFT_LEFT(ARG, COUNT) > > Note it's only defined for signed or unsigned. > > Here's my cut at fixing up your code. > There were a few other problems. > > http://home.comcast.net/~mike_treseler/adr_dec.vhd > http://home.comcast.net/~mike_treseler/adr_dec.pdf > > -- Mike Treseler Jim Lewis |
|
|
|
#4 |
|
Posts: n/a
|
On Feb 2, 1:17 am, "Volker" <j...@gmx.de> wrote:
> Hello, > > I wrote a small code, but Quartus doesnt compile it. The error message is: > Error (10327): VHDL error at ADR_DEC.vhd(27): can't determine definition of > operator ""sll"" -- found 0 possible definitions > > The code: > library IEEE; > use IEEE.STD_LOGIC_1164.all; > use IEEE.STD_LOGIC_ARITH.all; > use IEEE.STD_LOGIC_UNSIGNED.all; > use IEEE.NUMERIC_STD.all; Why are you including both std_logic_arith/unsigned and numeric_std? -a Andy Peters |
|
|
|
#5 |
|
Posts: n/a
|
On 2 fév, 19:53, "Andy Peters" <goo...@latke.net> wrote:
> On Feb 2, 1:17 am, "Volker" <j...@gmx.de> wrote: > > > Hello, > > > I wrote a small code, but Quartus doesnt compile it. The error message is: > > Error (10327): VHDL error at ADR_DEC.vhd(27): can't determine definition of > > operator ""sll"" -- found 0 possible definitions > > > The code: > > library IEEE; > > use IEEE.STD_LOGIC_1164.all; > > use IEEE.STD_LOGIC_ARITH.all; > > use IEEE.STD_LOGIC_UNSIGNED.all; > > use IEEE.NUMERIC_STD.all; > > Why are you including both std_logic_arith/unsigned and numeric_std? > > -a salut, d'après que j'ai vu j'avais le même problème : en fait sll fonctinne avec des bit_vector et non std_logic_vector j'espere que je vous servi VHDL_HELP |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Dial Up Problem | smackedass | A+ Certification | 3 | 02-02-2007 11:59 PM |
| Re: Virus Problem ** Help!** | David BlandIII | A+ Certification | 1 | 03-02-2004 06:00 PM |
| Pioneer DVR3100S problem with Satellite receiver Samsung DCR 9500 | Fredrik Bengtsson | DVD Video | 0 | 12-12-2003 02:32 PM |
| Re: Serious Computer Problem | hootnholler | A+ Certification | 1 | 11-24-2003 12:18 PM |
| Re: Serious Computer Problem | Bret | A+ Certification | 0 | 11-19-2003 12:51 AM |