URL
https://opencores.org/ocsvn/ourisc/ourisc/trunk
Subversion Repositories ourisc
[/] [ourisc/] [trunk/] [rtl/] [packages/] [flags.vhd] - Rev 2
Go to most recent revision | Compare with Previous | Blame | View Log
-- -- Package File Template -- -- Purpose: This package defines supplemental types, subtypes, -- constants, and functions -- -- To use any of the example code shown below, uncomment the lines and modify as necessary -- library IEEE; use IEEE.STD_LOGIC_1164.all; package Flags is constant equals : std_logic_vector (3 downto 0) := "0001"; constant above : std_logic_vector (3 downto 0) := "0010"; constant overflow : std_logic_vector (3 downto 0) := "0100"; constant error : std_logic_vector (3 downto 0) := "1000"; end Flags;
Go to most recent revision | Compare with Previous | Blame | View Log