![]() |
|
|
|
#1 |
|
I'm intend to write a MOD function with two positive integer number.
It could be synthesized but cannot be simulated. It would be very appreciated if anyone could tell me how to write: library IEEE; use IEEE.STD_LOGIC_1164.all; package mymod_pack is function mymod ( L, R : in integer ) return integer; end mymod_pack; package body mymod_pack is function mymod ( L, R : in integer ) return integer is variable tmp : integer; begin tmp := L; if L > R then while tmp > R loop tmp := L - R; end loop; elsif L < R then tmp := L; elsif L = R then tmp := 0; else tmp := 0; end if; return tmp; end function; end mymod_pack; timewing |
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| equivalent function for itoa in Linux gcc compiler | suse | Software | 0 | 03-06-2009 05:30 AM |
| How to assign a returns value of a javascript function to a hiddenfield in a webpart | Chander | Software | 0 | 12-20-2007 09:14 AM |
| How to call C# function in javascript | visj4u | Software | 2 | 04-23-2007 03:24 PM |
| MS Access not recognising Date() function | tessythampan | Software | 0 | 08-28-2006 11:51 AM |
| I lost the "Help and Support" function from my start menu | Keith | A+ Certification | 1 | 03-14-2005 03:05 PM |