Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!1
WIP: System shell to develop branch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
WIP: System shell to develop branch
system_shell
into
develop
Overview
0
Commits
10
Pipelines
0
Changes
10
Merged
Felix Goding
requested to merge
system_shell
into
develop
5 years ago
Overview
0
Commits
10
Pipelines
0
Changes
10
Expand
Merging system shell with the developing branch
Edited
5 years ago
by
Felix Goding
0
0
Merge request reports
Viewing commit
dce32392
Prev
Next
Show latest version
10 files
+
642
−
8
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
dce32392
add python system shell
· dce32392
Ivar Härnqvist
authored
5 years ago
b_asic/__init__.py
+
12
−
5
Options
"""
Better ASIC Toolbox
"""
"""
Better ASIC Toolbox.
TODO: More info.
"""
from
_b_asic
import
*
from
_b_asic
import
*
from
b_asic.operation
import
*
def
mul
(
a
,
b
):
from
b_asic.ops
import
*
"""
A function that multiplies two numbers
"""
from
b_asic.pc
import
*
return
a
*
b
from
b_asic.port
import
*
from
b_asic.schema
import
*
from
b_asic.sfg
import
*
from
b_asic.signal
import
*
from
b_asic.simulation
import
*
\ No newline at end of file
Loading