-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from dinkelk/new_64_bit_packed
Adding 64-bit packed type models
- Loading branch information
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
description: Single component record for holding packed 64-bit floating point number. | ||
with: | ||
- Interfaces | ||
preamble: | | ||
subtype Float_64 is Interfaces.IEEE_Float_64; | ||
fields: | ||
- name: Value | ||
description: The 64-bit floating point number. | ||
type: Float_64 | ||
format: F64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
description: Single component record for holding packed signed 64-bit value. | ||
fields: | ||
- name: Value | ||
description: The 64-bit signed integer. | ||
type: Interfaces.Integer_64 | ||
format: I64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
description: Single component record for holding packed unsigned 64-bit value. | ||
fields: | ||
- name: Value | ||
description: The 64-bit unsigned integer. | ||
type: Interfaces.Unsigned_64 | ||
format: U64 |