-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.txt
More file actions
26 lines (26 loc) · 1.06 KB
/
example.txt
File metadata and controls
26 lines (26 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
; Single location description examples:
; Undefined location description
(0b <Undefined>) ; Note that undefined location descriptions still have a bit offset, it is simply ignored by every operation which would otherwise involve it
; Memory location description at bit offset 71 in address space 4
(71b <Memory 4>)
; Register location description at byte offset 2 in register 7
(2B <Register 7>)
; Implicit location description at bit offset 2 in a 4-byte implicit
(2 <ImplicitBytes 99 100 200 300>)
; Implicit location description at bit offset 2 in an 8-byte implicit (details of the base type "uint32" not explicit)
(2 <ImplicitValue "uint32" 22314>)
; Composite location description at bit offset 42 into a 3-part incomplete composite storage with overall size (4*8)+16+128=176 bits
(42 <Composite
4B (0b <Undefined>)
16b (20b <Memory 1>)
128b (70b <Register 10>)
>)
; Nested composite
(128 <Composite
4B (0b <Undefined>)
16b (20b <Composite
4B (0b <Register 1>)
4B (4b <Register 8>)
>)
128b (70b <Register 10>)
>)