Wednesday, May 30, 2012

VHDL port Array


the solution is to declare
Data Types 33
TLFeBOOK
user-defined data types in a PACKAGE, which will then be visible to the whole design
(thus including the ENTITY). An example is shown below.

------- Package: --------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.all;
----------------------------
PACKAGE my_data_types IS
TYPE vector_array IS ARRAY (NATURAL RANGE <>) OF
STD_LOGIC_VECTOR(7 DOWNTO 0);
END my_data_types;
--------------------------------------------

Source: Circuit Design with VHDL, Volnei A. Pedroni
MIT Press





Monday, May 28, 2012

Modify VHDL Assertion Message



The clew is to edit modelsim.ini in modelsim installation folder refer to ModelSim User's Manual in the chapter explaining "modelsim.ini Variables" -> BreakOnAssertion.

Have Fun! ;)

Thursday, April 5, 2012

Ubuntu Trash on NTFS Volume

1. Edit the fstab file

kate /etc/fstab

add uid=1000 in the option part

/dev/sda3       /home/norma/Documents/data        ntfs  defaults,uid=1000    0  0 
/dev/sda2       /home/norma/Documents/refreshing  ntfs  defaults,uid=1000    0  0 



2. Create a .Trash-1000 folder in the NTFS root Volume


Sunday, January 15, 2012

Friday, January 13, 2012

Auto-Mount Hard Drives on Ubuntu

use Storage Device Manager




it is available on Ubuntu Software Center


Saturday, January 7, 2012