This folder contains ChibiOS/RT related Eclipse extensions: - org.chibios.tools.eclipse.debug_x.y.z.jar, debugger extension that allows to inspect the ChibiOS/RT internal data structures at debug time. This plugin is best used when the kernel debug options are turned on. Installation: - Copy the plugin under [eclipse]/plugins. - Start Eclipse and enable the plugin from: Window->Show View->Others...->ChibiOS/RT - Make sure that Eclipse is using the "Standard Debugger" from: Window->Preferences->Run/Debug->Launching->Default Launchers-> GDB Hardware Debugging->[Debug] - Start a debug session of a ChibiOS/RT demo or application and step until after chSysInit() has been invoked. - Inspect the various structures (Timers, Threads etc) using the ChibiOS/RT view by pressing the yellow refresh button. d='get'> clone of https://github.com/ghdl/ghdl
aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue50/vector.d/muxb_219.vhd
blob: d26913c7c209d5682d6522017347ab627a12ba8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
library ieee;
use ieee.std_logic_1164.all;

library ieee;
use ieee.numeric_std.all;

entity muxb_219 is
	port (
		in_sel : in  std_logic;
		out_data : out std_logic;
		in_data0 : in  std_logic;
		in_data1 : in  std_logic
	);
end muxb_219;

architecture augh of muxb_219 is
begin

	out_data <= in_data0 when in_sel = '0' else in_data1;

end architecture;