Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hog-build-info-register
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Travail semestre SG
hog-build-info-register
Compare revisions
977af9ddaa531878a19e5acc382a760fdaa0a14b to e1669ff3ca2dcd391d9578995139000ce8241e06
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
travail-semestre-sg/hog-build-info-register
Select target project
No results found
e1669ff3ca2dcd391d9578995139000ce8241e06
Select Git revision
Branches
main
Tags
v0.0.1
v0.0.2
v0.0.3
v0.0.4
v0.0.5
6 results
Swap
Target
travail-semestre-sg/hog-build-info-register
Select target project
travail-semestre-sg/hog-build-info-register
1 result
977af9ddaa531878a19e5acc382a760fdaa0a14b
Select Git revision
Branches
main
Tags
v0.0.1
v0.0.2
v0.0.3
v0.0.4
v0.0.5
6 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Periph tb: In stimulus and monitor process, remove the not needed wait
· 6864e622
sebastie.gendre
authored
1 month ago
6864e622
Sim.conf: Set, again, the success string (was deleted by Hog button in Vivado)
· e1669ff3
sebastie.gendre
authored
1 month ago
e1669ff3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Top/hog-build-info/sim.conf
+3
-0
3 additions, 0 deletions
Top/hog-build-info/sim.conf
hog-build-info/hog-build-info.srcs/sim/axi4lite_interface_tb/tb_axi4lite_hog_build_info.vhd
+0
-6
0 additions, 6 deletions
.../sim/axi4lite_interface_tb/tb_axi4lite_hog_build_info.vhd
with
3 additions
and
6 deletions
Top/hog-build-info/sim.conf
View file @
e1669ff3
[
hog
]
HOG_SIMPASS_STR
=
">>> Simulation completed successfully"
[
registers_bank_tb
]
TOP
=
tb_hog_build_info_regs
...
...
This diff is collapsed.
Click to expand it.
hog-build-info/hog-build-info.srcs/sim/axi4lite_interface_tb/tb_axi4lite_hog_build_info.vhd
View file @
e1669ff3
...
...
@@ -222,27 +222,22 @@ begin
-- Request to read register 0
axi4lite_read
(
GDR_BASEADDR
,
rd_data_s
,
axi4lite_rd_bus_i
,
axi4lite_rd_bus_o
);
check_reg_0_data_s
<=
'1'
;
wait
for
CLK_PERIOD
*
2
;
-- Request to read register 1
axi4lite_read
(
GTR_BASEADDR
,
rd_data_s
,
axi4lite_rd_bus_i
,
axi4lite_rd_bus_o
);
check_reg_1_data_s
<=
'1'
;
wait
for
CLK_PERIOD
*
2
;
-- Request to read register 2
axi4lite_read
(
GVR_BASEADDR
,
rd_data_s
,
axi4lite_rd_bus_i
,
axi4lite_rd_bus_o
);
check_reg_2_data_s
<=
'1'
;
wait
for
CLK_PERIOD
*
2
;
-- Request to read register 3
axi4lite_read
(
GSR_BASEADDR
,
rd_data_s
,
axi4lite_rd_bus_i
,
axi4lite_rd_bus_o
);
check_reg_3_data_s
<=
'1'
;
wait
for
CLK_PERIOD
*
2
;
-- Request to read unknown register
axi4lite_read
(
UNK_BASEADDR
,
rd_data_s
,
axi4lite_rd_bus_i
,
axi4lite_rd_bus_o
);
check_reg_unk_data_s
<=
'1'
;
wait
for
CLK_PERIOD
*
2
;
-- Wait endlessly
wait
;
...
...
@@ -255,7 +250,6 @@ begin
-- Check we get register 0 value on data out
wait
until
check_reg_0_data_s
=
'1'
;
wait
for
CLK_PERIOD
;
assert
rd_data_s
=
hog_global_date
report
">>> register 0 value do not correspond to the value feed to the register bank. Instead, get: "
&
to_hstring
(
to_bitvector
(
rd_data_s
))
severity
failure
;
...
...
This diff is collapsed.
Click to expand it.