blob: fc196e458caba94ae20b7fc1fc8ae0a38707124c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
library IEEE;
use IEEE.std_logic_1164.all;
use ieee.numeric_std.all;
use std.textio.all;
package sim_ram_pkg is
subtype lol is text;
type sim_ram is record
fid: lol;
end record sim_ram;
end sim_ram_pkg;
package body sim_ram_pkg is
end package body sim_ram_pkg;
|