Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
spins-ltsmin-deb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Spot
spins-ltsmin-deb
Commits
b81fb4a0
Commit
b81fb4a0
authored
Dec 02, 2018
by
Alfons Laarman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
32 bit PCs
parent
d72ebddd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/spins/promela/compiler/ltsmin/state/LTSminTypeNative.java
...spins/promela/compiler/ltsmin/state/LTSminTypeNative.java
+1
-1
src/spins/promela/compiler/variable/VariableType.java
src/spins/promela/compiler/variable/VariableType.java
+1
-1
No files found.
src/spins/promela/compiler/ltsmin/state/LTSminTypeNative.java
View file @
b81fb4a0
...
...
@@ -76,7 +76,7 @@ public class LTSminTypeNative extends LTSminTypeImpl {
case
8
:
return
C_TYPE_UINT8
;
// BYTE
case
16
:
return
C_TYPE_UINT
16
;
// PC
return
C_TYPE_UINT
32
;
// PC
default
:
throw
new
AssertionError
(
"ERROR: Unable to handle: "
+
var
.
getName
()
+
" ("
+
var
.
getType
().
getJavaName
()
+
")."
);
}
...
...
src/spins/promela/compiler/variable/VariableType.java
View file @
b81fb4a0
...
...
@@ -24,7 +24,7 @@ public class VariableType {
public
static
VariableType
BYTE
=
new
VariableType
(
"byte"
,
"uint"
,
8
);
public
static
VariableType
PC
=
new
VariableType
(
"pc"
,
"int"
,
16
);
public
static
VariableType
PC
=
new
VariableType
(
"pc"
,
"int"
,
32
);
public
static
VariableType
PID
=
new
VariableType
(
"pid"
,
"uint"
,
8
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment