Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/vhdl
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: VHDL mode</title>
[2] Fix | Delete
<meta charset="utf-8"/>
[3] Fix | Delete
<link rel=stylesheet href="../../doc/docs.css">
[4] Fix | Delete
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css">
[6] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="../../addon/edit/matchbrackets.js"></script>
[8] Fix | Delete
<script src="vhdl.js"></script>
[9] Fix | Delete
<style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
[10] Fix | Delete
<div id=nav>
[11] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[12] Fix | Delete
[13] Fix | Delete
<ul>
[14] Fix | Delete
<li><a href="../../index.html">Home</a>
[15] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[16] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[17] Fix | Delete
</ul>
[18] Fix | Delete
<ul>
[19] Fix | Delete
<li><a href="../index.html">Language modes</a>
[20] Fix | Delete
<li><a class=active href="#">VHDL</a>
[21] Fix | Delete
</ul>
[22] Fix | Delete
</div>
[23] Fix | Delete
[24] Fix | Delete
<article>
[25] Fix | Delete
<h2>VHDL mode</h2>
[26] Fix | Delete
[27] Fix | Delete
<div><textarea id="code" name="code">
[28] Fix | Delete
LIBRARY ieee;
[29] Fix | Delete
USE ieee.std_logic_1164.ALL;
[30] Fix | Delete
USE ieee.numeric_std.ALL;
[31] Fix | Delete
[32] Fix | Delete
ENTITY tb IS
[33] Fix | Delete
END tb;
[34] Fix | Delete
[35] Fix | Delete
ARCHITECTURE behavior OF tb IS
[36] Fix | Delete
--Inputs
[37] Fix | Delete
signal a : unsigned(2 downto 0) := (others => '0');
[38] Fix | Delete
signal b : unsigned(2 downto 0) := (others => '0');
[39] Fix | Delete
--Outputs
[40] Fix | Delete
signal a_eq_b : std_logic;
[41] Fix | Delete
signal a_le_b : std_logic;
[42] Fix | Delete
signal a_gt_b : std_logic;
[43] Fix | Delete
[44] Fix | Delete
signal i,j : integer;
[45] Fix | Delete
[46] Fix | Delete
BEGIN
[47] Fix | Delete
[48] Fix | Delete
-- Instantiate the Unit Under Test (UUT)
[49] Fix | Delete
uut: entity work.comparator PORT MAP (
[50] Fix | Delete
a => a,
[51] Fix | Delete
b => b,
[52] Fix | Delete
a_eq_b => a_eq_b,
[53] Fix | Delete
a_le_b => a_le_b,
[54] Fix | Delete
a_gt_b => a_gt_b
[55] Fix | Delete
);
[56] Fix | Delete
[57] Fix | Delete
-- Stimulus process
[58] Fix | Delete
stim_proc: process
[59] Fix | Delete
begin
[60] Fix | Delete
for i in 0 to 8 loop
[61] Fix | Delete
for j in 0 to 8 loop
[62] Fix | Delete
a <= to_unsigned(i,3); --integer to unsigned type conversion
[63] Fix | Delete
b <= to_unsigned(j,3);
[64] Fix | Delete
wait for 10 ns;
[65] Fix | Delete
end loop;
[66] Fix | Delete
end loop;
[67] Fix | Delete
end process;
[68] Fix | Delete
[69] Fix | Delete
END;
[70] Fix | Delete
</textarea></div>
[71] Fix | Delete
[72] Fix | Delete
<script>
[73] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
[74] Fix | Delete
lineNumbers: true,
[75] Fix | Delete
matchBrackets: true,
[76] Fix | Delete
mode: {
[77] Fix | Delete
name: "vhdl",
[78] Fix | Delete
}
[79] Fix | Delete
});
[80] Fix | Delete
</script>
[81] Fix | Delete
[82] Fix | Delete
<p>
[83] Fix | Delete
Syntax highlighting and indentation for the VHDL language.
[84] Fix | Delete
<h2>Configuration options:</h2>
[85] Fix | Delete
<ul>
[86] Fix | Delete
<li><strong>atoms</strong> - List of atom words. Default: "null"</li>
[87] Fix | Delete
<li><strong>hooks</strong> - List of meta hooks. Default: ["`", "$"]</li>
[88] Fix | Delete
<li><strong>multiLineStrings</strong> - Whether multi-line strings are accepted. Default: false</li>
[89] Fix | Delete
</ul>
[90] Fix | Delete
</p>
[91] Fix | Delete
[92] Fix | Delete
<p><strong>MIME types defined:</strong> <code>text/x-vhdl</code>.</p>
[93] Fix | Delete
</article>
[94] Fix | Delete
[95] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function