- organize apps in separate folder

This commit is contained in:
2022-09-10 08:32:25 +02:00
parent 63edf40cdc
commit e75e17f72e
10 changed files with 10813 additions and 3 deletions
File diff suppressed because it is too large Load Diff
Binary file not shown.
File diff suppressed because it is too large Load Diff
Binary file not shown.
+2 -3
View File
@@ -35,7 +35,7 @@ use work.async_defs.all;
ENTITY tb_mips_top IS
Generic
(
filename : string := "hello.elf.flash.bin"
app : string := "apps/hello.elf.flash.bin"
);
END tb_mips_top;
@@ -401,8 +401,7 @@ SRAM_WRITE:
FLASH_READ:
process(rst, flash_cs_n, flash_oe_n, flash_a)
type file_t is file of integer;
file load_flash : file_t open read_mode is filename;
-- file load_flash : file_t open read_mode is "test_exception_sim.elf.flash.bin";
file load_flash : file_t open read_mode is app;
variable instr : integer;
variable index : natural;
variable temp : signed(31 downto 0);