Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Microblaze demo
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
Microblaze demo
Commits
f5222e1a
Commit
f5222e1a
authored
2 weeks ago
by
sebastie.gendre
Browse files
Options
Downloads
Patches
Plain Diff
Add dummy simu into the git repo
Was into the Prejocts subfolder before
parent
258558cd
No related branches found
Branches containing commit
Tags
v0.0.6
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Top/microblaze-demo/list/sim_1.sim
+0
-1
0 additions, 1 deletion
Top/microblaze-demo/list/sim_1.sim
microblaze-demo/microblaze-demo.srcs/sim_1/new/dummy_simu.vhd
+57
-0
57 additions, 0 deletions
...oblaze-demo/microblaze-demo.srcs/sim_1/new/dummy_simu.vhd
with
57 additions
and
1 deletion
Top/microblaze-demo/list/sim_1.sim
+
0
−
1
View file @
f5222e1a
Projects/microblaze-demo/microblaze-demo.srcs/sim_1/new/dummy_simu.vhd 93 lib=xil_defaultlib
This diff is collapsed.
Click to expand it.
microblaze-demo/microblaze-demo.srcs/sim_1/new/dummy_simu.vhd
0 → 100644
+
57
−
0
View file @
f5222e1a
----------------------------------------------------------------------------------
-- Company:
-- Engineer:
--
-- Create Date: 03/10/2025 07:21:40 AM
-- Design Name:
-- Module Name: dummy_simu - Behavioral
-- Project Name:
-- Target Devices:
-- Tool Versions:
-- Description:
--
-- Dependencies:
--
-- Revision:
-- Revision 0.01 - File Created
-- Additional Comments:
--
----------------------------------------------------------------------------------
library
IEEE
;
use
IEEE
.
STD_LOGIC_1164
.
ALL
;
use
ieee
.
numeric_std
.
all
;
use
std
.
textio
.
all
;
entity
dummy_simu
is
Generic
(
-- Global Generic Variables
GLOBAL_DATE
:
std_logic_vector
(
31
downto
0
)
:
=
(
others
=>
'0'
);
GLOBAL_TIME
:
std_logic_vector
(
31
downto
0
)
:
=
(
others
=>
'0'
);
GLOBAL_VER
:
std_logic_vector
(
31
downto
0
)
:
=
(
others
=>
'0'
);
GLOBAL_SHA
:
std_logic_vector
(
31
downto
0
)
:
=
(
others
=>
'0'
)
);
end
dummy_simu
;
architecture
Behavioral
of
dummy_simu
is
begin
assert
false
report
"GLOBAL_DATE: "
&
to_hstring
(
to_bitvector
(
GLOBAL_DATE
))
severity
note
;
assert
false
report
"GLOBAL_TIME: "
&
to_hstring
(
to_bitvector
(
GLOBAL_TIME
))
severity
note
;
assert
false
report
"GLOBAL_VER: "
&
to_hstring
(
to_bitvector
(
GLOBAL_VER
))
severity
note
;
assert
false
report
"GLOBAL_SHA: "
&
to_hstring
(
to_bitvector
(
GLOBAL_SHA
))
severity
note
;
end
Behavioral
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment