<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'simple multiplier/devider' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'simple multiplier/devider' posted on the 'Electronics development' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Mon, 17 Jun 2013 23:13:10 -0700</pubDate>
    <lastBuildDate>Mon, 17 Jun 2013 23:13:10 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>simple multiplier/devider</title>
      <link>http://www.programmersheaven.com/mb/electronics/426914/426914/simple-multiplierdevider/</link>
      <description>hello,&lt;br /&gt;
 i need your help with the folowing code.&lt;br /&gt;
&lt;br /&gt;
The circuit has two 8 bit integer inputs a and b and two integer outputs x and y when x=a*b and y=a/2.&lt;br /&gt;
The code must be concurrent. &lt;br /&gt;
&lt;br /&gt;
Here is what i wrote:&lt;br /&gt;
&lt;br /&gt;
library IEEE;&lt;br /&gt;
use IEEE.STD_LOGIC_1164.ALL;&lt;br /&gt;
use ieee.std_logic_arith.all;&lt;br /&gt;
&lt;br /&gt;
package my_data_types is&lt;br /&gt;
type integer_input is array (7 downto 0) of integer range -8 to 8;&lt;br /&gt;
end my_data_types;&lt;br /&gt;
&lt;br /&gt;
library IEEE;&lt;br /&gt;
use IEEE.STD_LOGIC_1164.ALL;&lt;br /&gt;
use ieee.std_logic_arith.all;&lt;br /&gt;
&lt;br /&gt;
entity mul_dev is&lt;br /&gt;
port (a,b: in integer_input(7 downto 0);&lt;br /&gt;
		x,y: out integer_input (7 downto 0));&lt;br /&gt;
end mul_dev;&lt;br /&gt;
&lt;br /&gt;
architecture Behavioral of mul_dev is&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
begin&lt;br /&gt;
&lt;br /&gt;
x&amp;lt;= (a*b);&lt;br /&gt;
y&amp;lt;= (a/2);&lt;br /&gt;
end Behavioral;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I'm using xillinx ise progect navigator to simulate and i get the following errors:&lt;br /&gt;
&amp;lt;integer_input&amp;gt; is not declared.&lt;br /&gt;
Entity &amp;lt;mul_dev&amp;gt; is not yet compiled.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It seems he won't accept the pre defined array, what coul be the problem?&lt;br /&gt;
&lt;br /&gt;
10x!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/electronics/426914/426914/simple-multiplierdevider/</guid>
      <pubDate>Sun, 22 Jan 2012 05:09:54 -0700</pubDate>
      <category>Electronics development</category>
    </item>
  </channel>
</rss>