Skip to content

Commit

Permalink
Merge pull request #23 from dinkelk/new_64_bit_packed
Browse files Browse the repository at this point in the history
Adding 64-bit packed type models
  • Loading branch information
dinkelk authored Feb 13, 2024
2 parents 11c52bf + 230b791 commit 02d5261
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/types/packed_types/packed_f64.record.yaml
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
7 changes: 7 additions & 0 deletions src/types/packed_types/packed_i64.record.yaml
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
7 changes: 7 additions & 0 deletions src/types/packed_types/packed_u64.record.yaml
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

0 comments on commit 02d5261

Please sign in to comment.