Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Heatshrink
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
Container 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
Grant Kim
Heatshrink
Commits
90f11da1
Commit
90f11da1
authored
11 years ago
by
Scott Vokes
Browse files
Options
Downloads
Patches
Plain Diff
Update decoder state machine diagram to reflect MSB/LSB split
parent
18128d0c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dec_sm.dot
+21
-8
21 additions, 8 deletions
dec_sm.dot
with
21 additions
and
8 deletions
dec_sm.dot
+
21
−
8
View file @
90f11da1
...
...
@@ -4,8 +4,10 @@ digraph {
empty
input_available
yield_literal
backref_index
backref_count
backref_index_msb
backref_index_lsb
backref_count_msb
backref_count_lsb
yield_backref
check_for_more_input
done
[
peripheries
=
2
]
...
...
@@ -14,18 +16,29 @@ digraph {
Start
->
empty
input_available
->
yield_literal
[
label
=
"pop 1-bit"
]
input_available
->
backref_index
[
label
=
"pop 0-bit"
,
weight
=
10
]
input_available
->
backref_index_msb
[
label
=
"pop 0-bit"
,
weight
=
10
]
input_available
->
backref_index_lsb
[
label
=
"pop 0-bit, index <8 bits"
,
weight
=
10
]
yield_literal
->
yield_literal
[
label
=
"sink()"
,
color
=
"blue"
]
yield_literal
->
yield_literal
[
label
=
"poll()"
,
color
=
"red"
]
yield_literal
->
check_for_more_input
[
label
=
"poll(), done"
,
color
=
"red"
]
backref_index
->
backref_count
[
label
=
"pop M-bit index"
,
weight
=
10
]
backref_index
->
done
[
label
=
"finish()"
,
color
=
"blue"
]
backref_index_msb
->
backref_index_msb
[
label
=
"sink()"
,
color
=
"blue"
]
backref_index_msb
->
backref_index_lsb
[
label
=
"pop index, upper bits"
,
weight
=
10
]
backref_index_msb
->
done
[
label
=
"finish()"
,
color
=
"blue"
]
backref_count
->
backref_count
[
label
=
"sink()"
,
color
=
"blue"
]
backref_count
->
yield_backref
[
label
=
"pop N-bit count"
,
weight
=
10
]
backref_count
->
done
[
label
=
"finish()"
,
color
=
"blue"
]
backref_index_lsb
->
backref_index_lsb
[
label
=
"sink()"
,
color
=
"blue"
]
backref_index_lsb
->
backref_count_msb
[
label
=
"pop index, lower bits"
,
weight
=
10
]
backref_index_lsb
->
backref_count_lsb
[
label
=
"pop index, count <=8 bits"
,
weight
=
10
]
backref_index_lsb
->
done
[
label
=
"finish()"
,
color
=
"blue"
]
backref_count_msb
->
backref_count_msb
[
label
=
"sink()"
,
color
=
"blue"
]
backref_count_msb
->
backref_count_lsb
[
label
=
"pop count, upper bits"
,
weight
=
10
]
backref_count_msb
->
done
[
label
=
"finish()"
,
color
=
"blue"
]
backref_count_lsb
->
backref_count_lsb
[
label
=
"sink()"
,
color
=
"blue"
]
backref_count_lsb
->
yield_backref
[
label
=
"pop count, lower bits"
,
weight
=
10
]
backref_count_lsb
->
done
[
label
=
"finish()"
,
color
=
"blue"
]
yield_backref
->
yield_backref
[
label
=
"sink()"
,
color
=
"blue"
]
yield_backref
->
yield_backref
[
label
=
"poll()"
,
color
=
"red"
]
...
...
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